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