wjbecker/filament-report-builder

Report builder for Filament using laravel models

Installs: 705

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 1

Open Issues: 0

pkg:composer/wjbecker/filament-report-builder

0.0.4 2024-11-20 19:21 UTC

This package is auto-updated.

Last update: 2025-10-20 21:30:12 UTC


README

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()
    ])