Added an example with two tables in the same parent component

This commit is contained in:
David
2025-03-31 01:19:15 -04:00
parent 69a87b3a5c
commit 63779f8bad
6 changed files with 89 additions and 5 deletions

View File

@@ -16,6 +16,7 @@
<li><a href="{{ route('with_bulk_actions') }}">Bulk Actions</a></li>
<li><a href="{{ route('with_relationships') }}">Relationships</a></li>
<li><a href="{{ route('with_custom_column') }}">Custom Column</a></li>
<li><a href="{{ route('many_tables') }}">Many Tables</a></li>
</ul>
</div>
</div>

View File

@@ -0,0 +1,11 @@
<div>
<div class="row">
<div class="col-8">
@generic_table($products)
</div>
<div class="col-4">
@generic_table($departments)
</div>
</div>
</div>