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