Bulky Custom Action
How can I add a bulky custom action in filament for example emailing all users
4 Replies
You can add Actions anywhere in your app. I simply put it in my App\Filament\Actions namespace.
If by "Bulky" you mean "how to make it apply to multiple selected records from a table" (such as the built-in Bulk Actions do), then the docs on Bulk Actions are strong. And I often source-dive and look at the built-in Bulk Actions for inspiration.
If by "Bulky" you just mean "it's doing a lot of work", again, best to define it as its own action class.
Then just include that action in whatever page/resource you require it to be triggerable.
GitHub
filament/packages/actions/src at 3.x · filamentphp/filament
A collection of beautiful full-stack components for Laravel. The perfect starting point for your next app. Using Livewire, Alpine.js and Tailwind CSS. - filamentphp/filament
GitHub
filament/packages/tables/src/Actions at 3.x · filamentphp/filament
A collection of beautiful full-stack components for Laravel. The perfect starting point for your next app. Using Livewire, Alpine.js and Tailwind CSS. - filamentphp/filament
okay thank you