To disable error reporting in larval production we simply need to set different environment variables.
In your .env file
APP_DEBUG=false
APP_ENV=production
After updating or adding app_debug to false. We need to clear the cache using the artisan command.
php artisan config:clear