Ekapp/skolehjem/app/Http/Controllers/WashingMachineController.php

132 lines
3.7 KiB
PHP
Raw Normal View History

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
2020-06-24 06:23:15 +00:00
use Illuminate\Http\Response;
2020-06-10 10:30:44 +00:00
use App\WashingMachine;
class WashingMachineController extends Controller
{
2020-06-30 08:04:06 +00:00
public function __construct()
{
$this->middleware([ "auth" ]);
$this->middleware([ "check.auth:washing.machine.list" ])->only("index");
$this->middleware([ "check.auth:washing.machine.show" ])->only("show");
$this->middleware([ "check.auth:washing.machine.create" ])->only("create", "store");
$this->middleware([ "check.auth:washing.machine.edit" ])->only("edit", "update");
$this->middleware([ "check.auth:washing.machine.delete" ])->only("delete");
}
/**
* Display a listing of the resource.
*
2020-06-10 10:30:44 +00:00
* @param Request $request
* @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\View\View
*/
2020-06-10 10:30:44 +00:00
public function index(Request $request)
{
2020-06-10 10:30:44 +00:00
$machines = WashingMachine::query()->paginate($request->query("page", 1));
return Response::detect("washing-machines.index", [ "machines" => $machines ]);
}
/**
* Show the form for creating a new resource.
*
2020-06-10 10:30:44 +00:00
* @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\View\View
*/
public function create()
{
return Response::detect("washing-machines.create");
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
2020-06-10 10:30:44 +00:00
* @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\View\View
*/
public function store(Request $request)
{
2020-06-10 10:30:44 +00:00
$data = $request->validate([
"time" => "required"
]);
$machine = new WashingMachine($data);
$machine->save();
return Response::detect("washing-machines.store");
}
/**
* Display the specified resource.
*
* @param int $id
2020-06-10 10:30:44 +00:00
* @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\View\View
*/
public function show($id)
{
2020-06-10 10:30:44 +00:00
$machine = WashingMachine::find($id);
return Response::detect("washing-machines.show", [
2020-06-10 10:30:44 +00:00
"machine" => $machine
]);
}
/**
* Show the form for editing the specified resource.
*
* @param int $id
2020-06-10 10:30:44 +00:00
* @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\View\View
*/
public function edit($id)
{
2020-06-10 10:30:44 +00:00
$machine = WashingMachine::find($id);
return Response::detect("washing-machines.edit", [
2020-06-10 10:30:44 +00:00
"machine" => $machine
]);
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
2020-06-10 10:30:44 +00:00
* @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\View\View
*/
public function update(Request $request, $id)
{
2020-06-10 10:30:44 +00:00
$data = $request->validate([
"time" => "required"
]);
$machine = WashingMachine::find($id);
$machine->update($data);
$machine->save();
return Response::detect("washing-machines.edit", [
2020-06-10 10:30:44 +00:00
"machine" => $machine
]);
}
/**
* Remove the specified resource from storage.
*
* @param int $id
2020-06-10 10:30:44 +00:00
* @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\View\View
*/
public function destroy($id)
{
2020-06-10 10:30:44 +00:00
$machine = WashingMachine::find($id);
$machine->delete();
return Response::detect("washing-machines.destroy");
}
}