20 lines
742 B
PHP
Raw Normal View History

2020-01-28 15:51:36 +03:00
<div class="table-responsive overflow-auto">
<table class="table table-hover align-items-center rp-border-collapse">
2019-11-16 10:21:14 +03:00
@include($class->views['table.header'])
2020-01-28 09:06:22 +03:00
<tbody>
@if (!empty($class->row_values[$table]))
@foreach($class->row_values[$table] as $id => $rows)
@include($class->views['table.rows'])
@endforeach
@else
<tr>
<td colspan="{{ count($class->dates) + 2 }}">
<h5 class="text-center pl-0">{{ trans('general.no_records') }}</h5>
</td>
</tr>
@endif
</tbody>
2019-11-16 10:21:14 +03:00
@include($class->views['table.footer'])
</table>
</div>