Hello, I'm experiencing problems with caching in Laravel 5.4.
When I give an UPDATE on a form, I direct the user to the listing of records.
When I return to the edit form of the same, the old data (before making the change) still appear.
Only when I refresh the F5 page does the correct data appear.
For elimination criteria, I did a direct test by the controller (no view) and the problem continues.
I have already performed procedures like:
php artisan clear-compiled php artisan cache: clear dpp-autoload composer -o
I forced the cache exclusion in the constructor of the controller Cache :: flush ();
But the problem still continues!
My application is running on a DigitalOcean VM (CENTOS - NGINX - PHP7)
Have you been through this? Thanks!