Answers for "auth::user()->i"

PHP
8

laravel auth user_id

$userId = Auth::id();
Posted by: Guest on May-12-2020
0

auth::check() and auth::user() what diferent

Auth::check() defers to Auth::user(). 
It's been that way since as long as I can remember.
In other words, Auth::check() calls Auth::user(), gets the result from it, 
and then checks to see if the user exists. 
The main difference is that it checks if the user is null for you 
so that you get a boolean value.


This is the check function:

public function check()
{
    return ! is_null($this->user());
}

As you can see, it calls the user() method, checks if it's null, 
and then returns a boolean value.
Posted by: Guest on December-30-2021

Code answers related to "auth::user()->i"

Browse Popular Code Answers by Language