2

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

Mrinmay
  • 21
  • 3

2 Answers2

0

CTRL+F5 forces the Cache to clear. hence generating the correct result.

Look at this: Clearing Cache

Dax
  • 767
  • 4
  • 11
  • 29
0

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

Akhilendra
  • 1,137
  • 1
  • 16
  • 31