The Laravel | Survival Guide
After any .env change, run:
Now go fix that avatar upload. And next time? Deploy at 11 AM on Tuesday. the laravel survival guide
php artisan config:clear php artisan config:cache php artisan queue:restart Then verify: php artisan tinker --execute="dd(config('queue.default'));" Check your Eloquent::saving() event listeners. Check your observers. One of them is returning false — which cancels the save silently. After any