It worked for me.
//code to be used in the controller (taken from @jedrzej.kurylo above)
$job = (new SendReminderEmail($user))->onQueue('emails');
$this->dispatch($job);
I think this sends the job to a queue named "emails". To complete a job sent to the emails queue:
//Run this command in a new terminal window
php artisan queue:listen --queue=emails
source
share