If someone will need it - appereantly we can still use old $_SESSION variable. Don't know possible consequences though.
/* somewhere in your app - e.g. in 'auth' filter */
if (session_id() == '') {
@session_start();
/* or Session:start(); */
}
$_SESSION['isLoggedIn'] = Auth::check() ? true : false;
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community