登录之后的跳转地址一般更改为:
protected $redirectPath = '/abc';
protected $loginPath = '/abc';
有没有什么办法用某个变量代替‘/abc’呢,
有时候‘/abc’需要来自数据库查询
登录之后的跳转地址一般更改为:
protected $redirectPath = '/abc';
protected $loginPath = '/abc';
有没有什么办法用某个变量代替‘/abc’呢,
有时候‘/abc’需要来自数据库查询
那这种的话,使用 getter 和 setter,然后稍微修改一下 auth 的代码:
public function redirectPath()
{
//return property_exists($this, 'redirectTo') ? $this->redirectTo : '/home';
// 根据你的实际逻辑返回路径
}
重写上面的代码
代码位于 RedirectsUsers 这个 trait 中