i want to implement Cache system in laravel and using reminder method but still not working, when my database update, delete and create, or if i implement pagination then not working,when i try to change page then i found previous record.
#laravel version : 5.5.34
#cache driver : database
public function index()
{
$value = Cache::remember('users', now()->addSeconds(60), function () {
return User::paginate();
});
// $value = User::paginate();