标签: php laravel
我想问一下Html:linkroute和Laravel中用于编辑功能的简单链接有什么区别。例如,
{!! Html:linkRoute("post.edit", "Edit", array("$post->id")) !!}
vs <a href="/post/{{$post->id}}/edit">Edit</a>
<a href="/post/{{$post->id}}/edit">Edit</a>