编程语言
首页 > 编程语言> > php-在Redirect :: intended中指定路由名称

php-在Redirect :: intended中指定路由名称

作者:互联网

我想通过其名称获取路由值并将其存储在变量中.

原因是,我想使用Redirect :: intended($url)方法将用户重定向到路由,而不是仅将URL放在那儿.

基本上,我希望具有与Redirect :: route($route_name)相同的行为,但具有预期的()函数.

有没有类似Route :: getValueByName()的方法?

非常感谢你.

解决方法:

如果我说对了,您可以使用

Redirect::intended(route('home'));

要么

Redirect::intended('/');

甚至

Redirect::intended(action('BaseController@index'));

标签:laravel-routing,laravel,php
来源: https://codeday.me/bug/20191029/1958710.html