Airline | Name | Type | Actions | @foreach($rank->subfleets as $sf)
---|---|---|---|
{!! $sf->airline->name !!} | {!! $sf->name !!} | {!! $sf->type !!} |
{!! 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() !!}
|