12 lines
318 B
PHP
12 lines
318 B
PHP
<table class="table">
|
|
@foreach ($data['content'] as $row)
|
|
<tr>
|
|
@php $tag = ($loop->first && $data['withHeadings']) ? 'th' : 'td'; @endphp
|
|
|
|
@foreach ($row as $cell)
|
|
<{{ $tag }}> {{ $cell }} </{{ $tag }}>
|
|
@endforeach
|
|
</tr>
|
|
@endforeach
|
|
</table>
|