Database Notifications not saving in table
My database notification that I want to make at the end of a console command is not saving, any ideas?
php artisan queue:workuse Filament\Notifications\Notification;
// ...
Notification::make()
->title("New calls: $newCalls")
->sendToDatabase(User::find(1));