Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nabeelio committed Oct 25, 2018
1 parent 3aef1a0 commit 6f7735a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Http/Controllers/Admin/AircraftController.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function index(Request $request)
public function create(Request $request)
{
return view('admin.aircraft.create', [
'airports' => $this->airportRepo->selectBoxList(),
'airports' => $this->airportRepo->selectBoxList(),
'subfleets' => Subfleet::all()->pluck('name', 'id'),
'statuses' => AircraftStatus::select(true),
'subfleet_id' => $request->query('subfleet'),
Expand Down Expand Up @@ -140,7 +140,7 @@ public function edit($id)

return view('admin.aircraft.edit', [
'aircraft' => $aircraft,
'airports' => $this->airportRepo->selectBoxList(),
'airports' => $this->airportRepo->selectBoxList(),
'subfleets' => Subfleet::all()->pluck('name', 'id'),
'statuses' => AircraftStatus::select(true),
]);
Expand Down

0 comments on commit 6f7735a

Please sign in to comment.