I have a system A where I store a session
$login = $request->input( 'login' );
$request->$session()->put('login', $login );
And a system B that stores the session:
$request->$session()->put('tentativa', 1);
Every time I set the value in session system B to session A loses value
Remembering that they are in different folders.
On the system A user can only navigate the system if logged in
I'm not using php artisan serve
I'm using apache2.4 even
I wish this did not happen, how do I make each system use its session?
And remembering that in the system B it does not have any system A session variable