+ Added new example about the new feature: custom column
This commit is contained in:
David
2025-03-17 22:33:11 -04:00
parent 096c7944b9
commit 25c6b316bd
14 changed files with 2260 additions and 7 deletions

View File

@@ -6,6 +6,7 @@ use App\Livewire\Examples\TableWithActionColumnComponent;
use App\Livewire\Examples\TableWithBindedRoutesComponent;
use App\Livewire\Examples\TableWithBulkActionsComponent;
use App\Livewire\Examples\TableWithColumnFormatterComponent;
use App\Livewire\Examples\TableWithCustomColumnComponent;
use App\Livewire\Examples\TableWithDragDropOrderingComponent;
use App\Livewire\Examples\TableWithExportComponent;
use App\Livewire\Examples\TableWithFiltersComponent;
@@ -27,6 +28,7 @@ Route::get('/with_pagination_settings', TableWithPaginationSettingsComponent::cl
Route::get('/with_drag_drop_ordering', TableWithDragDropOrderingComponent::class)->name('with_drag_drop_ordering');
Route::get('/with_bulk_actions', TableWithBulkActionsComponent::class)->name('with_bulk_actions');
Route::get('/with_relationships', TableWithRelationshipsComponent::class)->name('with_relationships');
Route::get('/with_custom_column', TableWithCustomColumnComponent::class)->name('with_custom_column');
Route::get('test', ParentComponent::class);