使用button type =“submit”而不是input - laravel

时间:2014-09-05 08:50:56

标签: php laravel laravel-4 font-awesome blade

我需要在按钮标签上有令人敬畏的字体图像。所以我不能使用<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

什么是正确的方法?

1 个答案:

答案 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?")'
    ));

根据您的口味量身定制。唯一需要注意的是类型设置为提交