laravel auth user id not working 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();