Hello @fylzero AND @sinnbeck , after many tries and testing , I start to understand what is happening .
well , In VUE if I load the page and just make this request -
this.$store.dispatch('save_session_search') ,
IT will works . but the problem is that I have other requests before this one to load the page , it is like this
loadPage() {
Promise.all([
// RESET ALL FILTERS
this.$store.dispatch('reset_all_filters') ,
// EXTRA OPTIONS
this.$store.dispatch('load_extra_options') ,
// LOAD OPTIONS
this.$store.dispatch('load_form_options')
]).then((res) => {
// THEN I SAVE THE SEARCH SESSION
this.$store.dispatch('save_session_search') ,
});
});
LIKE THIS THE SESSION IS NOT WORKING .
but it access the laravel page , I know that access there becose I tested in my console . but it not save the session .
My question is , does laravel limit the session , when make many requests ? I have never seen this .