tail -50 storage/logs/laravel.log | grep -E "\[[0-9]4-[0-9]2-[0-9]2.*\].*ERROR" Or use Log::error() yourself next time with a unique marker like 🚨 DEPLOY . You set QUEUE_CONNECTION=database in .env . But config/queue.php says redis because someone committed it.
It’s 9:58 PM. You just pushed what you thought was a tiny hotfix: “Update user avatar validation.” the laravel survival guide
Add this temporarily to AppServiceProvider@boot : tail -50 storage/logs/laravel
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.