我有以下删除按钮:
{!! Form::open(['route' => ['tasks.destroy', $type->id], 'method' => 'delete']) !!}
{!! Form::submit('Erase this task?', ['class' => 'delete']) !!}
{!!Form::close() !!}
现在我想不使用按钮,而是删除内容的图标。我想使用此按钮:http://fortawesome.github.io/Font-Awesome/3.2.1/icon/remove-sign/
<i class="icon-remove-sign"></i> icon-remove-sign
标志应该是蓝色和小。
我该怎么做?因此,我只收到与模型相关的错误消息。但是,当我不做任何改变时,它完美无缺。
有人能举例说明如何让图片指向删除路线吗?
答案 0 :(得分:0)
表单帮助器不允许您向其添加HTML。使用简单的HTML按钮:
{!! Form::open(['route' => ['tasks.destroy', $type->id], 'method' => 'delete']) !!}
<button class="delete">
<i class="icon-remove-sign"></i> Erase this task
</button>
{!!Form::close() !!}