how to get auth user id in laravel code example
Example 1: get id user login laravel
use Auth;
$user_id = Auth::user()->id;
Example 2: laravel auth user_id
$userId = Auth::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