Reputation: 21
When I logged in a Laravel-5 project after logged in when I open another Laravel-5 project in another tab in the same browser, when I refresh the logged in project it redirect to login page.
Upvotes: 0
Views: 872
Reputation: 11
Go to config folder then in session.php file, change the following
'cookie' => 'laravel_session',
TO
'cookie' => 'myapp_session',
Upvotes: 1