When using dd(), the session is not being extended
Hello,
I set the session lifetime to the minimum of 1 minute for testing purposes.
In one of the controllers in the index() method, I simply dd() some data.
I noticed that even if I constantly refresh the page in that minute, it won't extend the session, as if the request never gets to the part that extends the session. and when a minute passes, the user is logged out (even though I refreshed the page non-stop)
Why? I thought that until it reaches the controller method it also passes through the part where it extends the session and the user should continue to be logged in even when using dd().
(When I remove the dd() and keep refreshing the page, the user is not logged out)