Files
aibuddytool/resources/views/vendor/laravel_editorjs/blocks/table.blade.php
Charles T ded1643e5f Add (post manage)
Add (post country viewing)
2023-07-28 02:29:11 +08:00

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>