© 2026 Hedgehog Software, LLC
php artisan make:filament-page MyPage
<!-- my-page.blade.php --> <x-filament-panels::page> {{ $this->updateUserAction }} <x-filament-actions::modals /> </x-filament-panels::page>
use InteractsWithActions; use InteractsWithForms; public function updateUserAction(): Action { return Action::make('updateUserAction') ->action(fn () => User::first()->update(['name' => Str::random()])) ->requiresConfirmation(); }