gpt4 book ai didi

laravel - 我想访问像 web.php 这样的路由中的 auth()->user()->?

转载 作者:行者123 更新时间:2023-12-05 06:15:48 25 4
gpt4 key购买 nike

我如何从 web.php 中的 auth 访问用户角色,谁能提供在 web.php 中访问用户的方法?

尝试这段代码

dd(Auth::check(),auth()->user());

我已登录并且也有经过身份验证的用户,但显示此输出

enter image description here

最佳答案

您可以使用 Auth facade,但正如评论中指出的那样,它需要位于中间件或路由处理程序内部,否则它还无法正确初始化。

<?php

use Illuminate\Support\Facades\Route;
use Illuminate\Http\Request;

Auth::user(); //here Auth functions fail

Route::get('/', function () {
if (Auth::guest()) { //but here it will work
return redirect('/login');
} else {
return redirect('/dashboard');
}
});

关于laravel - 我想访问像 web.php 这样的路由中的 auth()->user()->?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62325148/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com