Laravel

<!-- 1, url -->
<a href="{{url('/')}}">跳转到主页</a>
 
<!-- 2,action  方法 -->
<a href="{{action('StudentController@index')}}">跳转到用户页面</a>
 
<!-- 3,别名 -->
<a href="{{route('main')}}">route跳转到主页</a>
原文地址:https://www.cnblogs.com/500m/p/12790674.html