0
Hi, I’m having apparent cache issues on Laravel 5.4.
When I give a UPDATE in a form, I direct the user to the listing of records.
When you return to the editing form, the old data (before making the change) still appears.
Only when I refresh the page F5 the correct data appear.
For deletion criteria, I did a direct test by the controller (no view) and the problem continues.
I’ve performed procedures like:
php Artisan clear-Compiled
php Artisan cache:clear
php Artisan config:clear
Dump-autoload -o
I forced cache deletion on controller’s Construct Cache::flush();
But the problem still remains!
My application is running on a Digitalocean VM (CENTOS - NGINX - PHP7)
Have you been there? Thank you!