我有一个页面home.blade.php
。此页面中有一个href标记,该标记会重定向到另一个页面login.blade.php
。
<a href="{{URL::to('login')}}">Login</a>.Any simple method to return to that page directly from this href tag?
答案 0 :(得分:3)
试试这个:
您可以通过路线在任何刀片模板上重定向,而无需使用控制器。
在routes.php中
SQLContext