123456789101112131415161718 |
- <table {!! $attributes !!}>
- <thead>
- <tr>
- @foreach($headers as $header)
- <th>{{ $header }}</th>
- @endforeach
- </tr>
- </thead>
- <tbody>
- @foreach($rows as $row)
- <tr>
- @foreach($row as $item)
- <td>{!! $item !!}</td>
- @endforeach
- </tr>
- @endforeach
- </tbody>
- </table>
|