Laravel Queues with Docker
In .env change connection so queues can run asynchronously
QUEUE_CONNECTION=database
Check queue.php config file
'connections' => [
'sync' => [
'driver' => 'sync',
],
'database' => [
'driver' => 'databa...
florin-oprescu.hashnode.dev2 min read