© 2026 Hedgehog Software, LLC
composer require filament/notifications:"^3.2" -W
php artisan filament:install --notifications
Notification::make() ->title('Two days before the reservation ' . $reservation->id) ->actions([ Action::make('Link') ->button() ->url(ReservationResource::getUrl('view', ['record' => $reservation])), Action::make('view') ->button() ]) ->sendToDatabase($user, isEventDispatched: true);
php artisan make:notifications-table
$recipient = auth()->user(); Notification::make() ->title('Saved successfully') ->sendToDatabase($recipient, isEventDispatched: true);
php artisan reverb:start --debub