You generally send notification like:
$notification = (new ExampleNotification()); $user->notify($notification);
To Debug this and preview, you can do:
$notification = (new ExampleNotification())->toMail('test@test.com'); echo $notification->render(); die();
Top comments (0)