type ratings

@component('admin.components.info') These type ratings are allowed to fly aircraft in this subfleet. @endcomponent

@if(count($subfleet->typeratings)) @endif @foreach($subfleet->typeratings as $tr) @endforeach
Type Name
{{ $tr->type }} {{ $tr->name }} {{ Form::open(['url' => '/admin/subfleets/'.$subfleet->id.'/typeratings', 'method' => 'delete', 'class' => 'modify_typerating']) }} {{ Form::hidden('typerating_id', $tr->id) }} {{ Form::button('', ['type' => 'submit', 'class' => 'btn btn-sm btn-danger btn-icon']) }} {{ Form::close() }}

{{ Form::open(['url' => '/admin/subfleets/'.$subfleet->id.'/typeratings', 'method' => 'post', 'class' => 'modify_typerating form-inline']) }} {{ Form::select('typerating_id', $avail_ratings, null, ['placeholder' => 'Select Type Rating', 'class' => 'ac-fare-dropdown form-control input-lg select2']) }} {{ Form::button(' add', ['type' => 'submit', 'class' => 'btn btn-success btn-s']) }} {{ Form::close() }}