登录后都是跳转后/home,如何跳转到上一页(登录前的页面)/(没有登录前页面才跳转到home)?
每次都是跳转到home这样不是很好,用户还等去倒退或者是历史记录找之前的页面
public function handle($request, Closure $next)
{
if ($this->auth->check()) {
return redirect('/home');
}
return $next($request);
}
这样看看?