我自定義laravel 5的內置登錄,以便根據類型列將其重定向到三個不同的路徑,我添加到users表中,我試着改變RedirectIfAuthenticated的句柄函數中間件。但它似乎總是找到家庭URI。Laravel 5自定義內置登錄重定向
這裏是我的編輯中間件
public function handle($request, Closure $next)
{
if ($this->auth->check() && $this->auth->user()->type == 'patient') {
// return redirect('/home');
return 'PATIENT VIEW';
} elseif ($this->auth->check() && $this->auth->user()->type == 'doctor') {
return 'DOCTOR VIEW';
} elseif ($this->auth->check() && $this->auth->user()->type == 'nurse') {
return 'NURSE VIEW';
}
return $next($request);
}
進出口新的laravel 5,我會非常感謝所有幫助和解釋
非常感謝你:)這對我很有用。 –