name('table_no_settings'); Route::get('/exportable_table', TableWithExportComponent::class)->name('exportbale'); Route::get('/action_column', TableWithActionColumnComponent::class)->name('action_column'); Route::get('/with_filters', TableWithFiltersComponent::class)->name('with_filters'); Route::get('/with_column_formatters', TableWithColumnFormatterComponent::class)->name('with_column_formatters'); Route::get('/with_binded_routes', TableWithBindedRoutesComponent::class)->name('with_binded_routes'); Route::get('/with_pagination_settings', TableWithPaginationSettingsComponent::class)->name('with_pagination_settings'); 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('/many_tables', WithTwoTablesComponent::class)->name('many_tables'); Route::get('test', ParentComponent::class); Route::get('product/details/{id?}/{st?}', function($id, $st){ echo 'Hola ' . $id . ' ' . $st; })->name('product_details');