patients.blade.php 1.5 KB

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