After Deploying Your Laravel Application to the production server, don't forget to run these commands for better performance:
To cache the config
, routes
and files
run
1php artisan optimize
Or
1php artisan route:cache2php artisan view:cache3php artisan config:cache
To cache Events:
1php artisan event:cache
Happy Coding!