我需要在按钮标签上有令人敬畏的字体图像。所以我不能使用<input type="submit">
<button type="submit" class="btn btn-success">
<i class="fa-trash"></i> delete
</button>
在laravel上查看
{{ Form::open(array('method'
=> 'DELETE', 'route' => array('admin.states.destroy', $value->id))) }}
{{ Form::submit(HTML::decode(FA::icon('trash')), array('class'
=> 'actions-line icon-trash','onclick'=>'return confirm("Are you sure?")')) }}
{{ Form::close() }}
这不是在按钮
中呈现html什么是正确的方法?
答案 0 :(得分:10)
像
这样的东西Form::button('<i class="fa fa-star"></i> Submit', array(
'type' => 'submit',
'class'=> 'actions-line icon-trash',
'onclick'=>'return confirm("Are you sure?")'
));
根据您的口味量身定制。唯一需要注意的是类型设置为提交