有一个按钮,点击后会重定向到新页面。
我想在laravel刀片模板中为此定义一个超链接。
{!! Form::button('<span class="fa fa-arrow-circle-right"></span> Start',
array('class' => 'btn btn-next next-step pull-right'))
!!}
答案 0 :(得分:2)
用表格包裹您的按钮:
<form action="http://example.com">
// button code
</form>
或者:
{!! Form::open(['url' => 'http://example.com']) !!}
// button code
{!! Form::close() !!}
{!! Form::open(['route' => 'route.name']) !!}
// button code
{!! Form::close() !!}
{!! Form::open(['action' => 'Controller@action']) !!}
// button code
{!! Form::close() !!}