table.blade.php 344 B

123456789101112131415161718
  1. <table {!! $attributes !!}>
  2. <thead>
  3. <tr>
  4. @foreach($headers as $header)
  5. <th>{{ $header }}</th>
  6. @endforeach
  7. </tr>
  8. </thead>
  9. <tbody>
  10. @foreach($rows as $row)
  11. <tr>
  12. @foreach($row as $item)
  13. <td>{!! $item !!}</td>
  14. @endforeach
  15. </tr>
  16. @endforeach
  17. </tbody>
  18. </table>