Ben Borgers

How to dispatch a job locally from Laravel Tinker

January 27, 2021

When developing a Laravel app locally, the ::dispatch() method might not work from Laravel Tinker, since a real queue driver isnโ€™t running.

Instead, after starting Tinker (php artisan tinker), try this command:

\Bus::dispatch(new App\Jobs\SomeJob($arguments))