mariomka/advanced-dashboards-for-filament

Advanced Dashboards for Filament

v0.10.0 2024-06-23 13:34 UTC

This package is auto-updated.

Last update: 2024-11-08 23:29:03 UTC


README

This package is a work in progress and is not ready for production use.

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

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.