auth 函数返回一个 认证器 实例。您可以使用它来替代 Auth 门面:
auth
Auth
$user = auth()->user();
如果需要,你可以指定你想要访问的认证实例:
$user = auth('admin')->user();