โ˜… A Laravel package to dispatch jobs via Artisan

1 ยท Freek Van der Herten ยท June 14, 2021, 3:48 p.m.
Our team has released a new Laravel package: spatie/laravel-artisan-dispatchable. This package allows you to dispatch any job from an artisan command.In this blog post, I'd like to explain why we created the package and how you can use it.Why we created this package #Laravel's scheduler will perform all tasks sequentially. When you add a scheduled task to the scheduler, the task should perform its work as fast as possible, so no other tasks will have to wait.If you have a task that needs to run...