PHP code example of wjbecker / filament-report-builder

1. Go to this page and download the library: Download wjbecker/filament-report-builder library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

wjbecker / filament-report-builder example snippets


use Wjbecker\FilamentReportBuilder\FilamentReportBuilderPlugin;

return $panel
    // ...
    ->databaseNotifications()
    ->plugins([
        // ... Other Plugins
        FilamentReportBuilderPlugin::make()
    ])
bash
php artisan vendor:publish --tag=filament-report-builder-migrations
php artisan migrate
bash
# 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