@foreach($flight->subfleets as $sf) @endforeach
Type Name Actions
{!! $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() !!}

{!! Form::open(['url' => '/admin/flights/'.$flight->id.'/subfleets', 'method' => 'post', 'class' => 'flight_subfleet form-inline' ]) !!} {!! Form::select('subfleet_id', $avail_subfleets, null, [ 'placeholder' => 'Select Subfleet', 'class' => 'ac-flight-dropdown form-control input-lg', ]) !!} {!! Form::button(' add', ['type' => 'submit', 'class' => 'btn btn-success btn-s']) !!} {!! Form::close() !!}