python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Handle function in Laravel job class is not working but the constructor in job class working.Why?
dispatch((new placeJob($data))->onQueue('important'));
this line calls the job constructor, but log statement and any other statement in handle function is not working.
i'm trying to dispatch the j...
arunaji601
Votes: 0
Answers: 0
laravel scheduling and jobs and queues
I have a series of drivers for sending emails, for example Gmail, Yahoo, etc.
The structure of the database:
drivers_table:
id name host status user pass
1 Gmail google.com ...
Hossein
Votes: 0
Answers: 1
while error thrown by artisan custom command, it is not getting caught in laravel exception handler
When running custom artisan command which dispatches job, if any exception occur in job it should call handler.php but it doesn't get called.
I need to send an email for each type of exception caught ...
akshay mahindre
Votes: 0
Answers: 1
Laravel horizon not processing jobs
I install laravel horizon on a laravel 5.7 project and config it like this:
'domain' => null,
'path' => 'horizon',
'use' => 'default',
'prefix' => env('HORIZON_PREFIX', 'ho...
mr javad
Votes: 0
Answers: 1