diff --git a/resources/lang/en/flights.php b/resources/lang/en/flights.php index 2c9227d2..1ee5790f 100644 --- a/resources/lang/en/flights.php +++ b/resources/lang/en/flights.php @@ -5,6 +5,7 @@ return [ 'flighttime' => 'Flight Time', 'flighttype' => 'Flight Type', 'flighthours' => 'Flight Hours', + 'code' => 'Code', 'callsign' => 'Callsign', 'route' => 'Route', 'mybid' => 'My Bids', diff --git a/resources/lang/es/flights.php b/resources/lang/es/flights.php index b24c3b9e..6ffa7271 100644 --- a/resources/lang/es/flights.php +++ b/resources/lang/es/flights.php @@ -5,6 +5,7 @@ return [ 'flighttime' => 'Tiempo de vuelo', 'flighttype' => 'Tipo de vuelo', 'flighthours' => 'Horas de vuelo', + 'code' => 'Código', 'callsign' => 'Indicativo', 'route' => 'Ruta', 'mybid' => 'Mis reservas', diff --git a/resources/lang/it/flights.php b/resources/lang/it/flights.php index 5bf1cfa5..6f13a2f7 100644 --- a/resources/lang/it/flights.php +++ b/resources/lang/it/flights.php @@ -5,6 +5,7 @@ return [ 'flighttime' => 'Tempo di Volo', 'flighttype' => 'Tipo di Volo', 'flighthours' => 'Ore di Volo', + 'code' => 'Codice', 'callsign' => 'Nominativo', 'route' => 'Rotta', 'mybid' => 'Mie Prenotazioni', diff --git a/resources/lang/pt-br/flights.php b/resources/lang/pt-br/flights.php index d6778cdf..33e1045f 100755 --- a/resources/lang/pt-br/flights.php +++ b/resources/lang/pt-br/flights.php @@ -5,6 +5,7 @@ return [ 'flighttime' => 'Tempo do Voo', 'flighttype' => 'Tipo de Voo', 'flighthours' => 'Horas de Voo', + 'code' => 'Código', 'callsign' => 'Indicativo', 'route' => 'Rota', 'mybid' => 'Minhas Reservas', diff --git a/resources/views/layouts/default/flights/search.blade.php b/resources/views/layouts/default/flights/search.blade.php index 7f505777..5cb74253 100644 --- a/resources/views/layouts/default/flights/search.blade.php +++ b/resources/views/layouts/default/flights/search.blade.php @@ -24,6 +24,11 @@ {{ Form::text('flight_number', null, ['class' => 'form-control']) }} +
+

@lang('flights.code')

+ {{ Form::text('route_code', null, ['class' => 'form-control']) }} +
+

@lang('airports.departure')

{{ Form::select('dep_icao', $airports, null , ['class' => 'form-control select2']) }}