Airline | Name | ACARS Pay | Manual Pay | Actions | @endif @foreach($rank->subfleets as $sf)
---|---|---|---|---|
{!! $sf->airline->name !!} | {!! $sf->name !!} ({!! $sf->type !!}) | {!! $sf->pivot->acars_pay !!} | {!! $sf->pivot->manual_pay !!} |
{!! Form::open(['url' => '/admin/ranks/'.$rank->id.'/subfleets', 'method' => 'delete', 'class' => 'pjax_form']) !!}
{!! Form::hidden('subfleet_id', $sf->id) !!}
{!! Form::button('',
['type' => 'submit',
'class' => 'btn btn-sm btn-danger btn-icon'])
!!}
{!! Form::close() !!}
|