dashboard.blade.php 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. @extends ('layouts.template')
  2. @section('content')
  3. <div class="mt-3">
  4. <div class="container m-0 mt-4">
  5. <div class="row">
  6. <div class="col-md-4">
  7. <div class="card">
  8. <div class="card-header">
  9. <strong>
  10. <i class="fas fa-chart-bar"></i>
  11. Key Numbers
  12. </strong>
  13. </div>
  14. <div class="card-body p-0">
  15. <table class="table table-condensed table-bordered m-0">
  16. <tbody>
  17. <tr>
  18. <th>0</th>
  19. <th>Total patients</th>
  20. </tr>
  21. <tr>
  22. <th>0</th>
  23. <th>Patients I have not seen yet</th>
  24. </tr>
  25. <tr>
  26. <th>0</th>
  27. <th>Pending bills to sign</th>
  28. </tr>
  29. <tr>
  30. <th>0</th>
  31. <th>Pending notes to sign</th>
  32. </tr>
  33. </tbody>
  34. </table>
  35. </div>
  36. </div>
  37. <div class="card mt-3">
  38. <div class="card-header">
  39. <strong>
  40. Reimbursement
  41. </strong>
  42. </div>
  43. <div class="card-body p-0">
  44. <table class="table table-condensed table-bordered m-0">
  45. <tbody>
  46. <tr>
  47. <th>$1034.90</th>
  48. <th>Current balance</th>
  49. </tr>
  50. <tr>
  51. <th>30 June, 2020</th>
  52. <th>Next Payment Date</th>
  53. </tr>
  54. <tr>
  55. <th>$1023.00</th>
  56. <th>Last payment</th>
  57. </tr>
  58. <tr>
  59. <th>15 June, 2020</th>
  60. <th>Last payment date</th>
  61. </tr>
  62. </tbody>
  63. </table>
  64. </div>
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. </div>
  70. @endsection