2021-01-18 10:25:44 +08:00
|
|
|
<h4 class="description">@lang('flights.search')</h4>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
2019-10-30 01:03:04 +08:00
|
|
|
<div class="form-group search-form">
|
|
|
|
{{ Form::open([
|
|
|
|
'route' => 'frontend.flights.search',
|
|
|
|
'method' => 'GET',
|
|
|
|
]) }}
|
2021-01-18 10:25:44 +08:00
|
|
|
|
2020-12-05 00:12:41 +08:00
|
|
|
<div class="mt-1">
|
2021-01-18 10:25:44 +08:00
|
|
|
<div class="form-group">
|
|
|
|
<p>@lang('common.airline')</p>
|
2021-01-18 10:52:22 +08:00
|
|
|
{{ Form::select('airline_id', $airlines, null , ['class' => 'form-control select2']) }}
|
2021-01-18 10:25:44 +08:00
|
|
|
</div>
|
2020-12-05 00:12:41 +08:00
|
|
|
</div>
|
2021-01-18 01:23:23 +08:00
|
|
|
|
2021-01-18 10:25:44 +08:00
|
|
|
<div class="mt-1">
|
|
|
|
<p>@lang('flights.flighttype')</p>
|
|
|
|
{{ Form::select('flight_type', $flight_types, null , ['class' => 'form-control select2']) }}
|
2021-01-18 01:23:23 +08:00
|
|
|
</div>
|
|
|
|
|
2021-01-18 10:25:44 +08:00
|
|
|
<div class="mt-1">
|
2019-10-30 01:03:04 +08:00
|
|
|
<p>@lang('flights.flightnumber')</p>
|
|
|
|
{{ Form::text('flight_number', null, ['class' => 'form-control']) }}
|
|
|
|
</div>
|
2017-12-05 04:21:46 +08:00
|
|
|
|
2020-02-20 23:49:15 +08:00
|
|
|
<div class="mt-1">
|
2019-10-30 01:03:04 +08:00
|
|
|
<p>@lang('airports.departure')</p>
|
2019-10-30 01:09:23 +08:00
|
|
|
{{ Form::select('dep_icao', $airports, null , ['class' => 'form-control select2']) }}
|
2019-10-30 01:03:04 +08:00
|
|
|
</div>
|
2017-12-05 04:21:46 +08:00
|
|
|
|
2020-02-20 23:49:15 +08:00
|
|
|
<div class="mt-1">
|
2019-10-30 01:03:04 +08:00
|
|
|
<p>@lang('airports.arrival')</p>
|
2019-10-30 01:09:23 +08:00
|
|
|
{{ Form::select('arr_icao', $airports, null , ['class' => 'form-control select2']) }}
|
2019-10-30 01:03:04 +08:00
|
|
|
</div>
|
2017-12-05 04:21:46 +08:00
|
|
|
|
2020-02-20 23:49:15 +08:00
|
|
|
<div class="mt-1">
|
2020-01-17 06:36:03 +08:00
|
|
|
<p>@lang('common.subfleet')</p>
|
|
|
|
{{ Form::select('subfleet_id', $subfleets, null , ['class' => 'form-control select2']) }}
|
|
|
|
</div>
|
|
|
|
|
2020-02-20 23:49:15 +08:00
|
|
|
<div class="clear mt-1" style="margin-top: 10px;">
|
2020-03-23 21:31:35 +08:00
|
|
|
{{ Form::submit(__('common.find'), ['class' => 'btn btn-outline-primary']) }}
|
2019-10-30 01:03:04 +08:00
|
|
|
<a href="{{ route('frontend.flights.index') }}">@lang('common.reset')</a>
|
|
|
|
</div>
|
|
|
|
{{ Form::close() }}
|
2017-12-05 04:21:46 +08:00
|
|
|
</div>
|
2019-10-30 01:03:04 +08:00
|
|
|
</div>
|
|
|
|
</div>
|