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.
18 lines
396 B
18 lines
396 B
<table class="table table-hover" style="margin-bottom: 0;"> |
|
<thead> |
|
<tr> |
|
@foreach($titles as $column => $title) |
|
<th>{{ $title }}</th> |
|
@endforeach |
|
</tr> |
|
</thead> |
|
<tbody> |
|
@foreach($data as $datum) |
|
<tr> |
|
@foreach($datum as $key => $value) |
|
<td>{{ $value }}</td> |
|
@endforeach |
|
</tr> |
|
@endforeach |
|
</tbody> |
|
</table> |