Disable view cache in Laravel

Submitted by tuytoosh - 4 years ago

There are not any option to disable view cache in Laravel but in windows you can use following .bat file out of box and in other OS's you can do something similar...

:loop
cd /../../wamp64/www/accounting
php artisan view:clear
timeout /t 10
goto loop
SLEEP 10