laravel load auth user code example
Example 1: laravel auth user_id
$userId = Auth::id();
Example 2: laravel get auth user id
// Get the currently authenticated user's ID...
$id = Auth::id();
$userId = Auth::id();
// Get the currently authenticated user's ID...
$id = Auth::id();