laravel commands to refresh env file

Solutions on MaxInterview for laravel commands to refresh env file by the best coders in the world

showing results for - "laravel commands to refresh env file"
Jessy
23 Jan 2020
1// NOTE: Five most important commands if your Laravel is not working
2//	     as expected after some modifications in .env or database folder
3
4php artisan config:clear
5php artisan cache:clear
6composer dump-autoload
7php artisan view:clear
8php artisan route:clear