laravel get user logged code example

Example 1: current user laravel

$user = auth()->user();  print($user->id);print($user->name);print($user->email);

Example 2: get logged user id laravel

$id = Auth::user()->id;print_r($id);

Example 3: laravel get auth user id

// Get the currently authenticated user's ID...
$id = Auth::id();

Example 4: get user auth in laravel

Auth::user();

Example 5: how to find the name of login user in laravel

Auth::user()->name

Example 6: make authentication in laravel

composer require laravel/ui:^2.4

php artisan ui vue --auth

Tags:

Php Example