laravel auth is logged in code example
Example 1: get logged user id laravel
$id = Auth::user()->id;print_r($id);
Example 2: laravel get auth user id
// Get the currently authenticated user's ID...
$id = Auth::id();
Example 3: laravel check auth
use Illuminate\Support\Facades\Auth;
if (Auth::check()) {
// The user is logged in...
}
Example 4: laravel auth
//namespace
use Illuminate\Support\Facades\Auth;