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

3
  • no such reboot is required, if your not seeing the changes, open an incognito window and see if you see them there, if so, its your cache. Commented Aug 13, 2018 at 22:21
  • If its just cache, do this in Chrome: CTRL + SHIFT + R Commented Aug 13, 2018 at 22:36
  • Possible duplicate of Disable the cache? Commented Aug 14, 2018 at 2:24

2 Answers 2

0

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

Look at this: Clearing Cache

Sign up to request clarification or add additional context in comments.

Comments

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

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.