dashboard-nal.template.blade.php 807 B

1234567891011121314151617181920212223
  1. <div class="row mt-3">
  2. <div class="col-12">
  3. <div class="table-responsive p-0 bg-white table-sm">
  4. <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
  5. <thead>
  6. <tr>
  7. <th colspan="2" class="px-2">Record Details</th>
  8. </tr>
  9. </thead>
  10. <tbody>
  11. @foreach($record as $k => $v)
  12. <tr>
  13. <td class="px-2 text-secondary border-right">{{ ucwords(str_replace("_", " ", $k)) }}</td>
  14. <td class="px-2 font-weight-bold">{{ $record->$k }}</td>
  15. </tr>
  16. @endforeach
  17. </tbody>
  18. </table>
  19. </div>
  20. </div>
  21. </div>