When using queueable notifications:
class MyNotification extends Notification implements ShouldQueue
{
use Queueable;
}
How do I handle failed jobs? If I'd have dispatched the email/notification via a job class I could use the failed method:
public function failed(Exception $exception) {
Log::debug('MyNotification failed');
}
However the failed method in a notification doesn't work