Field and error message cleanup

This commit is contained in:
Nabeel Shahzad
2017-12-31 14:20:52 -06:00
parent d93e461266
commit 11c724649c
12 changed files with 153 additions and 136 deletions

View File

@@ -72,7 +72,7 @@ class FlightController extends BaseController
return view('admin.flights.create', [
'flight' => null,
'airlines' => $this->airlineRepo->selectBoxList(),
'airports' => $this->airportRepo->selectBoxList(),
'airports' => $this->airportRepo->selectBoxList(true, false),
]);
}