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