## Queues


The notifications are sent by means of queueing the jobs.

The command to run the queue worker is:

php artisan queue:work --queue=favourites,weekly_openings,topic_notifications --max-jobs=1000


The queues for the favourite related notifications and the weekly openings is populated by the scheduler.
To start the scheduler execute:

php artisan schedule:run 


