jingcai-php/vendor/dcat/laravel-admin/resources/views/widgets/table.blade.php

26 lines
663 B
PHP
Executable File

<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>&nbsp;{{ trans('admin.no_data') }}</span></div>
</td>
</tr>
@endif
</tbody>
</table>