Great content! Now I have more grasp of how laravel queue works. Btw, can I ask of the VSCode extensions you've used, especially the nice blink of your code cursor? Thanks
how do we notify client that the job is running or is it already finished? also in order to run jobs I have to run that `php artisan queue:work` all the time so it act like a daemon which check jobs table for think do to in background?
I'm trying to implementing this queue with your guide the difference here that I'm using ->save() not myMoidel:create() and I got different result that my handler just stored in my model table , not on Jobst able ,,, , do ->save() is wrong ?
Thanks for making this video for us, A Q for me? I did as you did. but the queue only works if you run the artisan command. how to run without artisan command
I have encountered the same problem. The solution that I found is use Illuminate\Support\Facades\Artisan; using this library in the controller and when all jobs are dispatched using the loop we can add this line afterwards $exitCode = Artisan::call('queue:work'); I am using laravel 9 with windows 10
Great content, most videos and tutorials are replicating each other and showing email sender...this is much more realistic!!! Congrats!
Indeed, very realistic. Most tutorials out there are based on email sender.
thank you so much, you saved my time!
Good content. This video help me to solve my problem.
Great content! Now I have more grasp of how laravel queue works. Btw, can I ask of the VSCode extensions you've used, especially the nice blink of your code cursor? Thanks
thank you so much a have been looking to understand this for days and you saved me .. its really easy and great content
how do we notify client that the job is running or is it already finished? also in order to run jobs I have to run that `php artisan queue:work` all the time so it act like a daemon which check jobs table for think do to in background?
is this the same way if im inserting a thousand data in database?
coz i'm getting the error when im trying to insert them
which editor you are using in this tutorial.
Thanks Sir
I'm trying to implementing this queue with your guide the difference here that I'm using ->save() not myMoidel:create() and I got different result that my handler just stored in my model table , not on Jobst able ,,, , do ->save() is wrong ?
Thanks for making this video for us, A Q for me? I did as you did. but
the queue only works if you run the artisan command. how to run without
artisan command
you can not, in server you can use service called supervisor which can keep running this command
@@Bitfumes after job dispatch. Can only run on terminal. Can't run through controller code. Right
I have encountered the same problem. The solution that I found is use Illuminate\Support\Facades\Artisan; using this library in the controller and when all jobs are dispatched using the loop we can add this line afterwards $exitCode = Artisan::call('queue:work'); I am using laravel 9 with windows 10
How to store data from api endpoint using laravel jobs?
tankyou very much
Nice tutorial
Thanks Sir, Can you create a video on how to export file csv using jobs in laravel?
But i want to tun that php artisan job:listen command automatically
How to trigger on shared server the job ?
Awesome content!
good work
which theme is this?
My code didn't fail. So do I still need batching??
great, but how to run queue work on cPanel?
You need to use Supervisor.
bro can you export a pdf file using queues job?
sir how to do validation
you made the performance worse by uploading data twice to the database.