laravel-nuxt icon indicating copy to clipboard operation
laravel-nuxt copied to clipboard

User info not showing up in settings

Open thor-n opened this issue 3 years ago • 1 comments

Bug: On the setting page: Name and Email is not show up

Howto show name and email?

thor-n avatar Mar 11 '21 08:03 thor-n

I found the solution:

in UserController.php

Wrong: return response()->json($user, 200); Correct: return response()->json($request->user());

thor-n avatar Mar 17 '21 12:03 thor-n