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?

use Filament\Notifications\Notification;

// ...

Notification::make()
  ->title("New calls: $newCalls")
  ->sendToDatabase(User::find(1));
Solution
Ignore me, I didnt have php artisan queue:work running
Was this page helpful?