2017-06-09 09:37:51 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
|
2017-06-23 09:55:45 +08:00
|
|
|
use App\Models\Subfleet;
|
2017-06-09 09:37:51 +08:00
|
|
|
use App\Http\Requests\CreateAircraftRequest;
|
|
|
|
use App\Http\Requests\UpdateAircraftRequest;
|
2017-06-24 06:33:18 +08:00
|
|
|
use App\Repositories\SubfleetRepository;
|
2017-06-13 11:48:32 +08:00
|
|
|
use App\Repositories\FareRepository;
|
2017-06-09 09:37:51 +08:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Flash;
|
|
|
|
use Prettus\Repository\Criteria\RequestCriteria;
|
|
|
|
use Response;
|
|
|
|
|
2017-06-11 11:17:45 +08:00
|
|
|
class AircraftController extends BaseController
|
2017-06-09 09:37:51 +08:00
|
|
|
{
|
2017-06-24 06:33:18 +08:00
|
|
|
/** @var SubfleetRepository */
|
2017-06-13 11:48:32 +08:00
|
|
|
private $aircraftRepository, $fareRepository;
|
2017-06-09 09:37:51 +08:00
|
|
|
|
2017-06-25 00:09:27 +08:00
|
|
|
public function __construct(
|
|
|
|
SubfleetRepository $aircraftRepo,
|
|
|
|
FareRepository $fareRepo
|
|
|
|
) {
|
2017-06-13 11:48:32 +08:00
|
|
|
$this->fareRepository = $fareRepo;
|
2017-06-09 09:37:51 +08:00
|
|
|
$this->aircraftRepository = $aircraftRepo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display a listing of the Aircraft.
|
|
|
|
*/
|
|
|
|
public function index(Request $request)
|
|
|
|
{
|
|
|
|
$this->aircraftRepository->pushCriteria(new RequestCriteria($request));
|
|
|
|
$aircraft = $this->aircraftRepository->all();
|
|
|
|
|
|
|
|
return view('admin.aircraft.index')
|
|
|
|
->with('aircraft', $aircraft);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for creating a new Aircraft.
|
|
|
|
*/
|
|
|
|
public function create()
|
|
|
|
{
|
2017-06-23 09:55:45 +08:00
|
|
|
return view('admin.aircraft.create', [
|
|
|
|
'subfleets' => Subfleet::all()->pluck('name', 'id'),
|
|
|
|
]);
|
2017-06-09 09:37:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store a newly created Aircraft in storage.
|
|
|
|
*/
|
|
|
|
public function store(CreateAircraftRequest $request)
|
|
|
|
{
|
|
|
|
$input = $request->all();
|
|
|
|
$aircraft = $this->aircraftRepository->create($input);
|
|
|
|
|
|
|
|
Flash::success('Aircraft saved successfully.');
|
|
|
|
return redirect(route('admin.aircraft.index'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the specified Aircraft.
|
|
|
|
*/
|
|
|
|
public function show($id)
|
|
|
|
{
|
|
|
|
$aircraft = $this->aircraftRepository->findWithoutFail($id);
|
|
|
|
|
|
|
|
if (empty($aircraft)) {
|
|
|
|
Flash::error('Aircraft not found');
|
|
|
|
return redirect(route('admin.aircraft.index'));
|
|
|
|
}
|
|
|
|
|
2017-06-23 09:55:45 +08:00
|
|
|
return view('admin.aircraft.show', [
|
2017-06-25 00:09:27 +08:00
|
|
|
'aircraft' => $aircraft,
|
2017-06-23 09:55:45 +08:00
|
|
|
]);
|
2017-06-09 09:37:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for editing the specified Aircraft.
|
|
|
|
*/
|
|
|
|
public function edit($id)
|
|
|
|
{
|
|
|
|
$aircraft = $this->aircraftRepository->findWithoutFail($id);
|
|
|
|
|
|
|
|
if (empty($aircraft)) {
|
|
|
|
Flash::error('Aircraft not found');
|
|
|
|
return redirect(route('admin.aircraft.index'));
|
|
|
|
}
|
|
|
|
|
2017-06-23 09:55:45 +08:00
|
|
|
return view('admin.aircraft.edit', [
|
|
|
|
'subfleets' => Subfleet::all()->pluck('name', 'id'),
|
2017-06-25 00:09:27 +08:00
|
|
|
'aircraft' => $aircraft,
|
2017-06-23 09:55:45 +08:00
|
|
|
]);
|
2017-06-09 09:37:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the specified Aircraft in storage.
|
|
|
|
*/
|
|
|
|
public function update($id, UpdateAircraftRequest $request)
|
|
|
|
{
|
|
|
|
$aircraft = $this->aircraftRepository->findWithoutFail($id);
|
|
|
|
|
|
|
|
if (empty($aircraft)) {
|
|
|
|
Flash::error('Aircraft not found');
|
|
|
|
return redirect(route('admin.aircraft.index'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$aircraft = $this->aircraftRepository->update($request->all(), $id);
|
|
|
|
|
|
|
|
Flash::success('Aircraft updated successfully.');
|
|
|
|
return redirect(route('admin.aircraft.index'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove the specified Aircraft from storage.
|
|
|
|
*/
|
|
|
|
public function destroy($id)
|
|
|
|
{
|
|
|
|
$aircraft = $this->aircraftRepository->findWithoutFail($id);
|
|
|
|
|
|
|
|
if (empty($aircraft)) {
|
|
|
|
Flash::error('Aircraft not found');
|
|
|
|
return redirect(route('admin.aircraft.index'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->aircraftRepository->delete($id);
|
|
|
|
|
|
|
|
Flash::success('Aircraft deleted successfully.');
|
|
|
|
return redirect(route('admin.aircraft.index'));
|
|
|
|
}
|
2017-06-12 08:02:29 +08:00
|
|
|
|
2017-06-09 09:37:51 +08:00
|
|
|
}
|