Skip to content

josh48202/filament-report-builder

Repository files navigation

Filament Report Builder

Dynamic Report Builder using Laravel Eloquent Models


Installation

Install package via composer:

composer require wjbecker/filament-report-builder

Publish & migrate migration files

php artisan vendor:publish --tag=filament-report-builder-migrations
php artisan migrate

Filament Export actions

# Laravel 11 and higher
php artisan make:queue-batches-table
php artisan make:notifications-table
 
# Laravel 10
php artisan queue:batches-table
php artisan notifications:table

php artisan vendor:publish --tag=filament-actions-migrations
php artisan migrate

Panel Configuration

Include this plugin in your panel configuration and enable database notifications:

use Wjbecker\FilamentReportBuilder\FilamentReportBuilderPlugin;

return $panel
    // ...
    ->databaseNotifications()
    ->plugins([
        // ... Other Plugins
        FilamentReportBuilderPlugin::make()
    ])

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published