Notifying the user after dispatching a background job once creating a new entry.

Right now im tackling it from the model's pov .. in Brief.php i have this part of code -

  protected static function booted()
    {
        static::created(function ($brief) {
            GenerateContentForBrief::dispatch($brief);
        });
    }


The job itself is doing bunch of things and eventually creates a new Article entry.. How can i notify the user in filament that their job is done? (Right now im using database driver for my jobs)
Was this page helpful?