cube-agency / filament-page-manager
Page manager for Filament
v1.0.6
2024-10-22 08:25 UTC
Requires
- php: ^8.1
- cube-agency/filament-json: v1.x
- cube-agency/filament-template: v1.x
- cube-agency/filament-tree-view: v1.x
- filament/filament: ^3.0
- illuminate/contracts: ^10.0|^11.0
- spatie/laravel-package-tools: ^1.15.0
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.9
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^8.0
- pestphp/pest: ^2.0
- pestphp/pest-plugin-arch: ^2.0
- pestphp/pest-plugin-laravel: ^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
This package is auto-updated.
Last update: 2024-11-22 08:39:45 UTC
README
Template based Page manager for FilamentPHP
Installation
You can install the package via composer:
composer require cube-agency/filament-page-manager
Run install command:
php artisan filament-page-manager:install
Run migrations (if that was not done on install):
php artisan migrate
Usage
Add this plugin to your AdminPanelProvider
use CubeAgency\FilamentPageManager\FilamentPageManagerPlugin; public function panel(Panel $panel): Panel { return $panel // ... ->plugins([ FilamentPageManagerPlugin::make(), ]); }
Create new template(s) according to this readme: Filament Template
Add these templates in config/filament-template.php under "pages" key, for example:
<?php return [ 'pages' => [ \App\Filament\Templates\MainTemplate::class ] ];
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.