phpvms/resources/views/admin/subfleets/fields.blade.php
Nabeel S 092b9fc9dc
Add step fields to enable decimal points on fields #342 (#343)
* Add step fields to enable decimal points on fields #342

* Update js-yaml version due to vulnerability scan

* Don't seed dev files when env == local

* Fix

* Fix  to be static

* Add visibilty keyword
2019-08-06 15:54:21 -04:00

74 lines
3.0 KiB
PHP

<div class="row">
<div class="col-sm-12">
@component('admin.components.info')
Subfleets are aircraft groups. The "type" is a short name. Airlines always
group aircraft together by feature, so 737s with winglets might have a type of
"B.738-WL". You can create as many as you want, you need at least one, though.
Read more about subfleets <a
href="http://docs.phpvms.net/concepts/basics#subfleets-and-aircraft"
target="_new">here</a>.
@endcomponent
</div>
<div class="form-group col-sm-4">
{{ Form::label('airline_id', 'Airline:') }}
{{ Form::select('airline_id', $airlines, null , ['class' => 'form-control select2']) }}
<p class="text-danger">{{ $errors->first('airline_id') }}</p>
</div>
<div class="form-group col-sm-4">
{{ Form::label('type', 'Type:') }}
{{ Form::text('type', null, ['class' => 'form-control']) }}
<p class="text-danger">{{ $errors->first('type') }}</p>
</div>
<div class="form-group col-sm-4">
{{ Form::label('name', 'Name:') }}
{{ Form::text('name', null, ['class' => 'form-control']) }}
<p class="text-danger">{{ $errors->first('name') }}</p>
</div>
</div>
<div class="row">
<div class="form-group col-sm-3">
{{ Form::label('cost_block_hour', 'Cost Per Hour:') }}
{{ Form::number('cost_block_hour', null , ['class' => 'form-control', 'step' => '0.01']) }}
<p class="text-danger">{{ $errors->first('cost_block_hour') }}</p>
</div>
<div class="form-group col-sm-3">
{{ Form::label('cost_delay_minute', 'Cost Delay Per Minute:') }}
{{ Form::number('cost_delay_minute', null , ['class' => 'form-control', 'step' => '0.01']) }}
<p class="text-danger">{{ $errors->first('cost_delay_minute') }}</p>
</div>
<div class="form-group col-sm-3">
{{ Form::label('fuel_type', 'Fuel Type:') }}
{{ Form::select('fuel_type', $fuel_types, null , ['class' => 'form-control select2']) }}
<p class="text-danger">{{ $errors->first('fuel_type') }}</p>
</div>
<div class="form-group col-sm-3">
{{ Form::label('ground_handling_multiplier', 'Ground Handling Multiplier:') }}
{{ Form::text('ground_handling_multiplier', null, ['class' => 'form-control']) }}
<p class="text-danger">{{ $errors->first('ground_handling_multiplier') }}</p>
@component('admin.components.info')
This is the multiplier of the airport ground-handling cost to charge for
aircraft in this subfleet, as a percentage. Defaults to 100.
@endcomponent
</div>
</div>
<div class="row">
<div class="form-group col-sm-12">
<div class="pull-right">
{{ Form::button('Save', ['type' => 'submit', 'class' => 'btn btn-success']) }}
<a href="{{ route('admin.subfleets.index') }}" class="btn btn-default">Cancel</a>
</div>
</div>
</div>