Type | Name | Actions | @endif @foreach($flight->subfleets as $sf)
---|---|---|
{{ $sf->type }} | {{ $sf->name }} |
{{ Form::open(['url' => '/admin/flights/'.$flight->id.'/subfleets',
'method' => 'delete',
'class' => 'pjax_subfleet_form']) }}
{{ Form::hidden('subfleet_id', $sf->id) }}
{{ Form::button('',
['type' => 'submit',
'class' => 'btn btn-danger btn-xs'])
}}
{{ Form::close() }}
|