Is there a way to restart the Laravel file system after uploading modified .css and php files?
The change is not getting triggered in my case.
Thanks and Best
Is there a way to restart the Laravel file system after uploading modified .css and php files?
The change is not getting triggered in my case.
Thanks and Best
CTRL+F5 forces the Cache to clear. hence generating the correct result.
Look at this: Clearing Cache
You can clear all cache Artisan command via these command.
php artisan cache:clear
And to clear route cache:
php artisan route:clear
To clear view cache:
php artisan view:clear