标签: php mysql laravel-5
我已经使用通行证和API登录,现在我想通过网络访问当前用户。如何在控制器中获取用户详细信息?
auth('api')->user();
答案 0 :(得分:0)
请您尝试一下吗?
public function __construct() { $this->middleware('auth'); $this->user = \Auth::user(); }