Missing on bids page #561 (#562)

This commit is contained in:
Nabeel S
2020-02-20 10:49:15 -05:00
committed by GitHub
parent 0060f794ae
commit c0fbc7d491
2 changed files with 13 additions and 12 deletions

View File

@@ -132,11 +132,12 @@ class FlightController extends Controller
$saved_flights = $flights->pluck('id')->toArray();
return view('flights.index', [
'title' => trans_choice('flights.mybid', 2),
'airlines' => $this->airlineRepo->selectBoxList(true),
'airports' => $this->airportRepo->selectBoxList(true),
'flights' => $flights,
'saved' => $saved_flights,
'title' => trans_choice('flights.mybid', 2),
'airlines' => $this->airlineRepo->selectBoxList(true),
'airports' => $this->airportRepo->selectBoxList(true),
'flights' => $flights,
'saved' => $saved_flights,
'subfleets' => $this->subfleetRepo->selectBoxList(true),
]);
}