how to get data from user id laravel code example
Example 1: laravel get auth user id
// Get the currently authenticated user's ID...
$id = Auth::id();
Example 2: laravel create get id
$id = $this->create($data)->id;
// Get the currently authenticated user's ID...
$id = Auth::id();
$id = $this->create($data)->id;