laravel check user login id code example
Example 1: get id user login laravel
use Auth;
$user_id = Auth::user()->id;
Example 2: laravel get auth user id
// Get the currently authenticated user's ID...
$id = Auth::id();
use Auth;
$user_id = Auth::user()->id;
// Get the currently authenticated user's ID...
$id = Auth::id();