Laravel Pro Tips
#jobs
🔥 #Laravel Unique Jobs Sometimes, you may want to ensure that only one instance of a specific job is on the queue at any point in time. You can do that by implementing the `ShouldBeUnique` interface in your job class.
Cosme Escobedo
#scheduler #jobs
🔥 #Laravel Tip: The task scheduler is not limited to just commands. You can configure it to dispatch jobs and even execute shell scripts at regular intervals.
Matt Kingshott
May 13th, 2022
#jobs #command bus
Laravel Command Bus
In Laravel 5.1 the Command Bus was replaced with Dispatchable Jobs, we can still use them but let us also look at how to add a Command Bus.