View of Laravel does not update changes

1

I'm doing a view, copied from another, and when I apply changes it does not change, I've put the new route in routes.php I've cleaned the cache, views, routes and settings, and even and rebooted the apache and nothing at all. What could be due?

php artisan cache:clear
php artisan config:cache
php artisan route:clear
php artisan view:clear

I have also deleted the files from / storage / framework / views

By the way, in this case I speak locally, not in production. Once the view is over, I will do the deployment.

    
asked by RuralGalaxy 02.08.2016 в 09:07
source

2 answers

3

Sometimes it happens to me and what I do is erase the history.

    
answered by 31.01.2017 в 19:13
1

In the end, combining the previous commands and modifying the php.ini in the following way has worked for me.

opcache.revalidate_freq=0
opcache.fast_shutdown=0
    
answered by 02.08.2016 в 09:30