laravel-nuxt
laravel-nuxt copied to clipboard
User info not showing up in settings
Bug: On the setting page: Name and Email is not show up
Howto show name and email?
I found the solution:
in UserController.php
Wrong: return response()->json($user, 200); Correct: return response()->json($request->user());