Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试显示图像而不是单词“返回”以转到上一页我该怎么做?
{!! Html::linkRoute('authors', Html::image(images/back.png)) !!}
你的代码唯一不好的是missin单引号
{!! Html::linkRoute('authors', Html::image('images/back.png')) !!}
但如果这不起作用,你总是可以使用一个a元素
a
<a href="{{ route('authors') }}" title="Title">Html::image('images/back.png')</a>