patients.blade.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. @extends ('layouts/template')
  2. @section('content')
  3. <?php $patients = [1,2,3,4]; ?>
  4. <div class="card mt-3">
  5. <div class="card-header">
  6. <strong>
  7. <i class="fas fa-user-injured"></i>
  8. Patients
  9. </strong>
  10. </div>
  11. <div class="card-body p-0">
  12. <table class="table table-condensed p-0 m-0">
  13. <thead>
  14. <tr>
  15. <th>#</th>
  16. <th>Name</th>
  17. <th>DOB</th>
  18. <th>Sex</th>
  19. <th>Ins.</th>
  20. <th>PCP</th>
  21. <th>Assistant</th>
  22. <th>Last E&M</th>
  23. <th>Next E&M</th>
  24. </tr>
  25. </thead>
  26. <tbody>
  27. @foreach($patients as $patient)
  28. <tr>
  29. <td>
  30. <a href="{{route('patients.view.dashboard', $patient)}}">
  31. {{$patient}}
  32. </a>
  33. </td>
  34. <td>A</td>
  35. <td>B</td>
  36. <td>C</td>
  37. <td>D</td>
  38. <td>E</td>
  39. <td>F</td>
  40. <td>G</td>
  41. <td>H</td>
  42. </tr>
  43. @endforeach
  44. </tbody>
  45. </table>
  46. </div>
  47. <div class="card-footer">
  48. Pagination Later
  49. </div>
  50. </div>
  51. @endsection