📜  laravel 未经身份验证的用户重新发送 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:52.633000             🧑  作者: Mango

代码示例1
/**
 * Get the path the user should be redirected to.
 *
 * @param  \Illuminate\Http\Request  $request
 * @return string
 */
protected function redirectTo($request)
{
    return route('login');
}