laravel if user is logged in code example

Example 1: get logged user id laravel

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

Example 2: check if logged laravel

use Illuminate\Support\Facades\Auth;

if (Auth::check()) {
    // The user is logged in...
}

Example 3: current loggedin user laravel

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

Example 4: how to check if there is an authenticated user laravel

if (Auth::check()) { // The user is logged in... }

Example 5: laravel authentication

composer require laravel/ui

php artisan ui vue --auth

Tags:

Php Example