12345678910111213141516171819202122232425 |
- <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
- @if (empty($rows))
- <tr>
- <td colspan="{!! count($headers) !!}">
- <div style="margin:5px 0 0 10px;"><span class="help-block" style="margin-bottom:0"><i class="feather icon-alert-circle"></i> {{ trans('admin.no_data') }}</span></div>
- </td>
- </tr>
- @endif
- </tbody>
- </table>
|