laravel中跳转redirect

在程序设计中,我们可能经常要用到跳转

在原生的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!');
```

    A+
发布日期:2021年01月22日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: