在程序设计中,我们可能经常要用到跳转
在原生的php中,我们可以通过`header("location:https://www.yuanchengzhushou.cn")`
来实现跳转
在`laravel`框架中,我们该如何实现呢?
在`controller`中添加
```
return redirect('/');
return redirect()->action('HomeController@index');
return redirect('auth/login');
return redirect('dashboard')->with('status', 'Profile updated!');
```