This Filament Plugin will give you a right sidepanel in your Filament Admin in which you can render any Livewire component that you create. You can configure in the config file which component to render on which page in your Filament Admin.
You can install the package via composer:
composer require stafe-group-ab/filament-sticky-panelYou can publish the config file with:
php artisan vendor:publish --tag="filament-sticky-panel-config"This is the contents of the published config file. Use the basenames or page_urls here.
return [
'pages' => [
'admin' => [
'page_url' => 'admin',
'component' => '', //'demo-component',
],
'edit' => [
'page_url' => 'edit',
'component' => '', //'edit-helper-component',
],
],
];Optionally, you can publish the views using
php artisan vendor:publish --tag="filament-sticky-panel-views"Just install the plugin and add some pages in the config file. It will split up your page in two parts. If you want to edit the grid settings, just public the views and do so.
composer testPlease 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.

