【发布时间】:2018-05-25 18:09:18
【问题描述】:
这是我的代码:
$msg = 'successfully inserted';
Redirect::route('home')->with($msg);
上面的行在我的脚本的末尾,但没有任何反应。我的意思是insert 查询也可以,但不会重定向到home 页面。注意到我的脚本顶部也有这一行:
use Illuminate\Support\Facades\Redirect;
知道如何让它工作吗?
【问题讨论】:
-
return redirect()->action('HomeController@index')->with($msg);
-
你的Controller文件和方法是什么?用你的控制器替换 HomeController,用你的方法替换索引。
-
试试:
return redirect('home')->with($msg); -
@HirenGohel 谢谢,问题是缺少
return。
标签: php laravel redirect routing