海工商新版后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

25 lines
663 B

<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>