$notification = Notification::make()
->title(__('New message'))
->body($message->content)
->actions([
NotificationAction::make('view')
->button()
->url('some_url'),
]);
$notification->sendToDatabase($recipient);
$notification->broadcast($recipient);
event(new DatabaseNotificationsSent($recipient));
$notification = Notification::make()
->title(__('New message'))
->body($message->content)
->actions([
NotificationAction::make('view')
->button()
->url('some_url'),
]);
$notification->sendToDatabase($recipient);
$notification->broadcast($recipient);
event(new DatabaseNotificationsSent($recipient));