table.blade.php 396 B

123456789101112131415161718
  1. <table class="table table-hover" style="margin-bottom: 0;">
  2. <thead>
  3. <tr>
  4. @foreach($titles as $column => $title)
  5. <th>{{ $title }}</th>
  6. @endforeach
  7. </tr>
  8. </thead>
  9. <tbody>
  10. @foreach($data as $datum)
  11. <tr>
  12. @foreach($datum as $key => $value)
  13. <td>{{ $value }}</td>
  14. @endforeach
  15. </tr>
  16. @endforeach
  17. </tbody>
  18. </table>