2017-11-01 23:08:36 +08:00
|
|
|
<div class="row">
|
2020-02-02 02:05:56 +08:00
|
|
|
<div class="col-12">
|
|
|
|
<div class="form-container">
|
|
|
|
<h6><i class="fas fa-info-circle"></i>
|
|
|
|
Flight Information
|
|
|
|
</h6>
|
|
|
|
<div class="form-container-body">
|
|
|
|
<div class="row">
|
|
|
|
<div class="form-group col-sm-3">
|
|
|
|
{{ Form::label('airline_id', 'Airline:') }} <span
|
|
|
|
class="required">*</span>
|
|
|
|
{{ Form::select('airline_id', $airlines, null , ['class' => 'form-control select2']) }}
|
|
|
|
<p class="text-danger">{{ $errors->first('airline_id') }}</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Flight Number Field -->
|
|
|
|
<div class="form-group col-sm-3">
|
|
|
|
{{ Form::label('flight_number', 'Flight Number/Code/Leg') }} <span class="required">*</span>
|
|
|
|
|
|
|
|
<div class="input-group input-group-sm mb3">
|
|
|
|
{{ Form::text('flight_number', null, ['class' => 'form-control', 'style' => 'width: 33%']) }}
|
|
|
|
{{ Form::text('route_code', null, ['class'=>'form-control', 'placeholder'=>'optional', 'style' => 'width: 33%']) }}
|
|
|
|
{{ Form::text('route_leg', null, ['class'=>'form-control', 'placeholder'=>'optional', 'style' => 'width: 33%']) }}
|
2018-04-09 09:51:27 +08:00
|
|
|
</div>
|
2020-02-02 02:05:56 +08:00
|
|
|
|
|
|
|
<p class="text-danger">{{ $errors->first('flight_number') }}</p>
|
|
|
|
<p class="text-danger">{{ $errors->first('route_code') }}</p>
|
|
|
|
<p class="text-danger">{{ $errors->first('route_leg') }}</p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Route Code Field -->
|
|
|
|
<div class="form-group col-sm-3">
|
|
|
|
{{ Form::label('level', 'Flight Type:') }} <span class="required">*</span>
|
|
|
|
{{ Form::select('flight_type', $flight_types, null, ['class' => 'form-control select2']) }}
|
|
|
|
<p class="text-danger">{{ $errors->first('flight_type') }}</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Route Leg Field -->
|
|
|
|
<div class="form-group col-sm-3">
|
|
|
|
{{ Form::label('flight_time', 'Flight Time (hours & minutes)') }}
|
|
|
|
|
|
|
|
<div class="input-group input-group-sm mb3">
|
|
|
|
{{ Form::number('hours', null, [
|
|
|
|
'class' => 'form-control',
|
|
|
|
'placeholder' => 'hours',
|
|
|
|
'style' => 'width: 50%',
|
|
|
|
'min' => '0',
|
|
|
|
]) }}
|
|
|
|
|
|
|
|
{{ Form::number('minutes', null, [
|
|
|
|
'class' => 'form-control',
|
|
|
|
'placeholder' => 'minutes',
|
|
|
|
'style' => 'width: 50%',
|
|
|
|
'min' => '0',
|
|
|
|
]) }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p class="text-danger">{{ $errors->first('hours') }}</p>
|
|
|
|
<p class="text-danger">{{ $errors->first('minutes') }}</p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{-- NEXT ROW --}}
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="form-group col-sm-4">
|
2020-03-07 00:36:02 +08:00
|
|
|
{{ Form::label('pilot_pay', 'Pilot Pay:') }}
|
|
|
|
{{ Form::text('pilot_pay', null, ['class' => 'form-control']) }}
|
|
|
|
<p class="text-danger">{{ $errors->first('pilot_pay') }}</p>
|
|
|
|
@component('admin.components.info')
|
|
|
|
Fill this in to pay a pilot a fixed amount for this flight.
|
|
|
|
@endcomponent
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group col-sm-4">
|
|
|
|
{{ Form::label('load_factor', 'Load Factor:') }}
|
|
|
|
{{ Form::text('load_factor', null, ['class' => 'form-control']) }}
|
|
|
|
<p class="text-danger">{{ $errors->first('load_factor') }}</p>
|
|
|
|
@component('admin.components.info')
|
|
|
|
Value between 1 and 100. See
|
|
|
|
<a href="{{ docs_link('load_factor') }}" target="_blank">docs</a>.
|
|
|
|
Leave blank to use the default value.
|
|
|
|
@endcomponent
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group col-sm-4">
|
|
|
|
{{ Form::label('load_factor_variance', 'Load Factor Variance:') }}
|
|
|
|
{{ Form::text('load_factor_variance', null, ['class' => 'form-control']) }}
|
|
|
|
<p class="text-danger">{{ $errors->first('load_factor_variance') }}</p>
|
|
|
|
@component('admin.components.info')
|
|
|
|
How much the load factor can vary per flight (+ or -). Leave blank to
|
|
|
|
use the default value.
|
|
|
|
@endcomponent
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
|
|
|
<div class="form-container">
|
|
|
|
<h6><i class="fas fa-map"></i>
|
|
|
|
Route
|
|
|
|
</h6>
|
|
|
|
<div class="form-container-body">
|
|
|
|
<div class="row">
|
|
|
|
<div class="form-group col-sm-6">
|
2020-02-02 02:05:56 +08:00
|
|
|
{{ Form::label('dpt_airport_id', 'Departure Airport:') }} <span
|
|
|
|
class="required">*</span>
|
|
|
|
{{ Form::select('dpt_airport_id', $airports, null , [
|
|
|
|
'id' => 'dpt_airport_id',
|
|
|
|
'class' => 'form-control select2'
|
|
|
|
]) }}
|
|
|
|
<p class="text-danger">{{ $errors->first('dpt_airport_id') }}</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Arr Airport Id Field -->
|
2020-03-07 00:36:02 +08:00
|
|
|
<div class="form-group col-sm-6">
|
2020-02-02 02:05:56 +08:00
|
|
|
{{ Form::label('arr_airport_id', 'Arrival Airport:') }} <span
|
|
|
|
class="required">*</span>
|
|
|
|
{{ Form::select('arr_airport_id', $airports, null , [
|
|
|
|
'id' => 'arr_airport_id',
|
|
|
|
'class' => 'form-control select2 select2'
|
|
|
|
]) }}
|
|
|
|
<p class="text-danger">{{ $errors->first('arr_airport_id') }}</p>
|
|
|
|
</div>
|
|
|
|
|
2020-03-07 00:36:02 +08:00
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<!-- Route Field -->
|
|
|
|
<div class="form-group col-sm-12">
|
|
|
|
{{ Form::label('route', 'Route:') }}
|
|
|
|
{{ Form::textarea('route', null, [
|
|
|
|
'class' => 'form-control input-text',
|
|
|
|
'style' => 'padding: 10px',
|
|
|
|
]) }}
|
|
|
|
<p class="text-danger">{{ $errors->first('route') }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
2020-02-02 02:05:56 +08:00
|
|
|
<!-- Alt Airport Id Field -->
|
|
|
|
<div class="form-group col-sm-4">
|
|
|
|
{{ Form::label('alt_airport_id', 'Alt Airport:') }}
|
|
|
|
{{ Form::select('alt_airport_id', $alt_airports, null , ['class' => 'form-control select2']) }}
|
|
|
|
<p class="text-danger">{{ $errors->first('alt_airport_id') }}</p>
|
|
|
|
</div>
|
|
|
|
|
2020-03-06 09:19:12 +08:00
|
|
|
<div class="form-group col-sm-4">
|
2020-03-07 00:36:02 +08:00
|
|
|
{{ Form::label('level', 'Flight Level:') }}
|
|
|
|
{{ Form::text('level', null, ['class' => 'form-control']) }}
|
|
|
|
<p class="text-danger">{{ $errors->first('level') }}</p>
|
2020-02-02 02:05:56 +08:00
|
|
|
</div>
|
|
|
|
|
2020-03-06 09:19:12 +08:00
|
|
|
<div class="form-group col-sm-4">
|
2020-02-02 02:05:56 +08:00
|
|
|
{{ Form::label('distance', 'Distance:') }} <span class="description small">in nautical miles</span>
|
|
|
|
<a href="#" class="airport_distance_lookup">Calculate</a>
|
|
|
|
{{ Form::text('distance', null, ['id' => 'distance', 'class' => 'form-control']) }}
|
|
|
|
<p class="text-danger">{{ $errors->first('distance') }}</p>
|
|
|
|
</div>
|
2018-04-09 09:51:27 +08:00
|
|
|
</div>
|
2020-02-02 02:05:56 +08:00
|
|
|
</div>
|
2017-11-01 23:08:36 +08:00
|
|
|
</div>
|
2020-02-02 02:05:56 +08:00
|
|
|
</div>
|
2017-06-18 06:25:36 +08:00
|
|
|
</div>
|
|
|
|
|
2020-03-07 00:36:02 +08:00
|
|
|
|
2018-03-23 10:21:35 +08:00
|
|
|
<div class="row">
|
2020-02-02 02:05:56 +08:00
|
|
|
<div class="col-12">
|
|
|
|
<div class="form-container">
|
|
|
|
<h6><i class="fas fa-clock"></i>
|
|
|
|
Scheduling
|
|
|
|
</h6>
|
|
|
|
<div class="form-container-body">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-4">
|
|
|
|
{{ Form::label('start_date', 'Start Date') }}
|
|
|
|
<span class="description small">optional</span>
|
|
|
|
{{ Form::text('start_date', null, ['id' => 'start_date', 'class' => 'form-control']) }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-sm-4">
|
|
|
|
{{ Form::label('end_date', 'End Date') }}
|
|
|
|
<span class="description small">optional</span>
|
|
|
|
{{ Form::text('end_date', null, ['id' => 'end_date', 'class' => 'form-control']) }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group col-sm-4">
|
|
|
|
{{ Form::label('days', 'Days of Week') }}
|
|
|
|
<span class="description small">optional</span>
|
|
|
|
<select id="days_of_week" name="days[]" multiple="multiple" size="7" style="width: 100%;">
|
|
|
|
<option value="{{\App\Models\Enums\Days::MONDAY}}"
|
|
|
|
{{in_mask($days, \App\Models\Enums\Days::MONDAY) ? 'selected':'' }}>
|
|
|
|
@lang('common.days.mon')
|
|
|
|
</option>
|
|
|
|
<option value="{{\App\Models\Enums\Days::TUESDAY}}"
|
|
|
|
{{in_mask($days, \App\Models\Enums\Days::TUESDAY) ? 'selected':'' }}>
|
|
|
|
@lang('common.days.tues')
|
|
|
|
</option>
|
|
|
|
<option value="{{\App\Models\Enums\Days::WEDNESDAY}}"
|
|
|
|
{{in_mask($days, \App\Models\Enums\Days::WEDNESDAY) ? 'selected':'' }}>
|
|
|
|
@lang('common.days.wed')
|
|
|
|
</option>
|
|
|
|
<option value="{{\App\Models\Enums\Days::THURSDAY}}"
|
|
|
|
{{in_mask($days, \App\Models\Enums\Days::THURSDAY) ? 'selected':'' }}>
|
|
|
|
@lang('common.days.thurs')
|
|
|
|
</option>
|
|
|
|
<option value="{{\App\Models\Enums\Days::FRIDAY}}"
|
|
|
|
{{in_mask($days, \App\Models\Enums\Days::FRIDAY) ? 'selected':'' }}>
|
|
|
|
@lang('common.days.fri')
|
|
|
|
</option>
|
|
|
|
<option value="{{\App\Models\Enums\Days::SATURDAY}}"
|
|
|
|
{{in_mask($days, \App\Models\Enums\Days::SATURDAY) ? 'selected':'false' }}>
|
|
|
|
@lang('common.days.sat')
|
|
|
|
</option>
|
|
|
|
<option value="{{\App\Models\Enums\Days::SUNDAY}}"
|
|
|
|
{{in_mask($days, \App\Models\Enums\Days::SUNDAY) ? 'selected':'false' }}>
|
|
|
|
@lang('common.days.sun')
|
|
|
|
</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
2018-04-09 09:51:27 +08:00
|
|
|
</div>
|
2020-03-06 09:19:12 +08:00
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="form-group col-sm-4">
|
|
|
|
{{ Form::label('dpt_time', 'Departure Time:') }}
|
|
|
|
{{ Form::text('dpt_time', null, ['class' => 'form-control']) }}
|
|
|
|
<p class="text-danger">{{ $errors->first('dpt_time') }}</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group col-sm-4">
|
|
|
|
{{ Form::label('arr_time', 'Arrival Time:') }}
|
|
|
|
{{ Form::text('arr_time', null, ['class' => 'form-control']) }}
|
|
|
|
<p class="text-danger">{{ $errors->first('arr_time') }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-02-02 02:05:56 +08:00
|
|
|
</div>
|
2018-03-23 10:21:35 +08:00
|
|
|
</div>
|
2020-02-02 02:05:56 +08:00
|
|
|
</div>
|
2018-03-23 10:21:35 +08:00
|
|
|
</div>
|
|
|
|
|
2017-11-01 23:08:36 +08:00
|
|
|
<div class="row">
|
2020-02-02 02:05:56 +08:00
|
|
|
<div class="col-lg-12">
|
|
|
|
<div class="form-container">
|
|
|
|
<h6><i class="fas fa-sticky-note"></i>
|
|
|
|
Remarks
|
|
|
|
</h6>
|
2020-03-07 00:36:02 +08:00
|
|
|
<div class="form-container-body">
|
|
|
|
<div class="row">
|
|
|
|
<div class="form-group col-sm-12">
|
|
|
|
{{ Form::textarea('notes', null, [
|
|
|
|
'class' => 'form-control input-text',
|
|
|
|
'style' => 'padding: 10px',
|
|
|
|
]) }}
|
|
|
|
<p class="text-danger">{{ $errors->first('notes') }}</p>
|
|
|
|
</div>
|
2018-04-10 08:32:38 +08:00
|
|
|
</div>
|
2020-02-02 02:05:56 +08:00
|
|
|
</div>
|
2018-01-01 04:20:52 +08:00
|
|
|
</div>
|
2020-02-02 02:05:56 +08:00
|
|
|
</div>
|
2017-11-01 23:08:36 +08:00
|
|
|
</div>
|
2017-06-18 06:25:36 +08:00
|
|
|
|
2017-11-01 23:08:36 +08:00
|
|
|
<div class="row">
|
2020-02-02 02:05:56 +08:00
|
|
|
<!-- Active Field -->
|
|
|
|
<div class="col-sm-4">
|
|
|
|
<div class="checkbox">
|
|
|
|
<label class="checkbox-inline">
|
|
|
|
{{ Form::label('active', 'Active:') }}
|
2020-03-05 07:14:03 +08:00
|
|
|
<input name="active" type="hidden" value="0" />
|
2020-02-02 02:05:56 +08:00
|
|
|
{{ Form::checkbox('active') }}
|
|
|
|
</label>
|
2018-01-01 04:20:52 +08:00
|
|
|
</div>
|
2020-02-02 02:05:56 +08:00
|
|
|
</div>
|
|
|
|
<div class="col-8">
|
|
|
|
<div class="text-right">
|
2020-03-07 05:54:53 +08:00
|
|
|
{{ Form::button('Save', ['type' => 'submit', 'class' => 'btn btn-info']) }}
|
2017-11-01 23:08:36 +08:00
|
|
|
</div>
|
2020-02-02 02:05:56 +08:00
|
|
|
</div>
|
2017-06-18 06:25:36 +08:00
|
|
|
</div>
|