Laravel - Notification & Events
This post refers to Laravel BootCamp tutorial.
[1] Define an event-related task
For example, a notification task.
Create a notification task via php artisan command:
php artisan make:notification NewChirp
Define the toMail method:
(app\notifications...