Subtly convert the page title into a dropdown navigation that's displayed on click.
It works similar to Filament's global search but only shows results for the current resource.
You can install the package via composer:
composer require howdu/filament-record-switcher
Optionally, you can publish the views using
php artisan vendor:publish --tag="filament-record-switcher-views"
app/Filament/Providers/AdminPanelProvider.php
use Howdu\FilamentRecordSwitcher\FilamentRecordSwitcherPlugin;Â class AdminPanelProvider extends PanelProvider{ public function panel(Panel $panel): Panel { return $panel // ... ->plugin( FilamentRecordSwitcherPlugin::make(), ); }}
HasRecordSwitcher
trait to each of your edit record Page.
E.g app/Filament/Resources/Category/Pages/EditCategory.php
use Howdu\FilamentRecordSwitcher\Filament\Concerns\HasRecordSwitcher;Â class EditCategory extends EditRecord{ use HasRecordSwitcher;}
Note: this trail will overwrite the getHeading()
method if you've overwritten it in your Page you need to
overwrite getRecordTitle()
instead.
protected static ?string $recordTitleAttribute = 'title';
php artisan filament:assets
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.
A full-stack developer from the United Kingdom. Full time developer since 2012 started out as a frontend developer and moved more into the backend now. Painfully remembers the says of supporting IE6 and needing to float everything.
I take pride in building quality code that’s super efficient and easy to maintain.
I’m always looking to learn new things and improve my skills.