database notification not working

where i use @livewire('database-notifications')
Solution
try this

Notification::make()
    ->title('Saved successfully')
    ->sendToDatabase(auth()->user());
Was this page helpful?