Store page filter in session variable

Any way to store a list page filter options to a session so on refresh the same filter is applied?
Radsystem 8.1.2 bootstrap laravel project

There is no configuration to handle that, you have to use the Laravel session function to store and retrieve sessions. HTTP Session - Laravel 10.x - The PHP Framework For Web Artisans

If you know the name of the filter variable you want to store then you can use the session function to store and retrieve It.

Hello,
Bootstrap Laravel project, save the filters to the session when they are set, using Laravel’s session([‘filters’ => $filters]). On page load, retrieve these filters from the session and apply them to your query.