From the docs, why not check if a user is authenticated (logged in) using this:
if (Auth::check())
{
// The user is logged in...
}
Hey Martijn,
thanks for the quick response. I know, that it is possible to check Laravel related Logins this way, but as I tried to explain, the session data is not stored by Laravel, but in the way of $_SESSION['loggedin'] = 1; The question is, how I can get information about that foreign data.
I am hitting this problem now too...
Any updates?
Thanks
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community