how to get auth user id in laravel in trait 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: get user auth in laravel
Auth::user();
use Auth;
$user_id = Auth::user()->id;
$userId = Auth::id();
Auth::user();