Search for ICAO not working properly (#496)

This commit is contained in:
Nabeel S
2020-01-10 09:41:32 -05:00
committed by GitHub
parent 4844692bd9
commit 03284959d6
7 changed files with 44 additions and 13 deletions

View File

@@ -7,11 +7,11 @@
{{ Form::label('flight_number', 'Flight Number:') }}
{{ Form::text('flight_number', null, ['class' => 'form-control']) }}
 
{{ Form::label('dep_icao', 'Departure:') }}
{{ Form::select('dep_icao', $airports, null , ['class' => 'form-control']) }}
{{ Form::label('dpt_airport_id', 'Departure:') }}
{{ Form::select('dpt_airport_id', $airports, null , ['class' => 'form-control']) }}
 
{{ Form::label('arr_icao', 'Arrival:') }}
{{ Form::select('arr_icao', $airports, null , ['class' => 'form-control']) }}
{{ Form::label('arr_airport_id', 'Arrival:') }}
{{ Form::select('arr_airport_id', $airports, null , ['class' => 'form-control']) }}
 
{{ Form::submit('find', ['class' => 'btn btn-primary']) }}