mariomka / advanced-dashboards-for-filament
Advanced Dashboards for Filament
Installs: 1 427
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^8.2
- filament/filament: ^v3.2.74
- spatie/laravel-package-tools: ^1.15.0
Requires (Dev)
- larastan/larastan: ^2.9.7
- laravel/pint: ^1.0
- nunomaduro/collision: ^8.0
- orchestra/testbench: ^9.0
- pestphp/pest: ^2.1
- pestphp/pest-plugin-arch: ^2.5
- pestphp/pest-plugin-laravel: ^2.0
- pestphp/pest-plugin-livewire: ^2.1
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
README
This package is a work in progress and is not ready for production use.
Installation
You can install the package via composer:
composer require mariomka/advanced-dashboards-for-filament
Then you need to update your Filament panel configuration:
public function panel(Panel $panel): Panel { return $panel // other configurations ->discoverQuestions(in: app_path('Filament/Questions'), for: 'App\\Filament\\Questions') // other configurations }
If you're building a custom theme, you need import a css file in your resources/css/filament/{panel}/theme.css
file:
@import '/vendor/mariomka/advanced-dashboards-for-filament/resources/css/overwrites.css';
And disable load the CSS in your config/advanced-dashboards-for-filament.php
file:
[ 'load_css' => false, ];
Optionally, you can publish the config file with:
php artisan vendor:publish --tag="advanced-dashboards-for-filament-config"
Optionally, you can publish the views using
php artisan vendor:publish --tag="advanced-dashboards-for-filament-views"
Usage
TBD
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.