{!! Form::open([
'method'=>'DELETE',
'url' => ['admin/tool', $tool->id],
'style' => 'display:inline'
]) !!}
{!! Form::button('
Delete', array(
'type' => 'submit',
'class' => 'btn red btn-xs',
'title' => 'Delete Tool',
'onclick'=>'return confirm("Confirm delete?")'
))!!}
{!! Form::close() !!}
ID | {{ $tool->id }} |
Category | {{ $tool->category }} |
---|
Status | {!! $tool->status == 0 ? 'Inactive' : 'Active' !!} |