Add (post manage)
Add (post country viewing)
This commit is contained in:
11
resources/views/vendor/laravel_editorjs/blocks/table.blade.php
vendored
Normal file
11
resources/views/vendor/laravel_editorjs/blocks/table.blade.php
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user