middleware([ "auth" ]); $this->middleware([ "check.auth:locations.list" ])->only("index"); $this->middleware([ "check.auth:locations.show" ])->only("show"); $this->middleware([ "check.auth:locations.create" ])->only("create", "store"); $this->middleware([ "check.auth:locations.edit" ])->only("edit", "update"); $this->middleware([ "check.auth:locations.delete" ])->only("delete"); } /** * Display a listing of the resource. * * @param Request $request * @return \Illuminate\Http\Response */ public function index(Request $request) { $locations = Location::query()->paginate($request->input("limit", 20)); return Response::detect("locations.index", [ "locations" => $locations ]); } /** * Show the form for creating a new resource. * * @return \Illuminate\Http\Response */ public function create() { return Response::detect("locations.create"); } /** * Store a newly created resource in storage. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ public function store(Request $request) { $data = $request->validate([ "name" => "required", ]); $location = new Location($data); $locations = Location::query()->where('name', '=', $request->name)->get(); // If there already is a washing machine with that name, then don't add it if (count($locations) > 0) return redirect()->route("locations.store")->with('NameExists', '

Der findes allerede en lokation med det navn!

'); else { // Else - Add it $location->save(); $locations = Location::query()->paginate($request->input("limit", 20)); return redirect()->route("locations.index", ['locations' => $locations]); } } /** * Display the specified resource. * * @param \App\Location $location * @return \Illuminate\Http\Response */ public function show(Location $location) { } /** * Show the form for editing the specified resource. * * @param \App\Location $location * @return \Illuminate\Http\Response */ public function edit(Location $location) { return Response::detect("locations.edit", [ "location" => $location] ); } /** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param \App\Location $location * @return \Illuminate\Http\Response */ public function update(Request $request, $id) { $data = $request->validate([ "name" => "required", ]); $location = Location::find($id); $allMachines = Location::query()->where('name', '=', $request->name)->where('id', '!=', $id)->get(); // If there already is a washing machine with that name, then don't change it if (count($allMachines) > 0) return redirect()->route("locations.store")->with('NameExists', '

Der findes allerede en lokation med det navn!

'); else { // Else - Change the name $location->update($data); $location->save(); $locations = Location::query()->paginate($request->input("limit", 20)); return redirect()->route("locations.index", ["locations" => $locations]); } } /** * Remove the specified resource from storage. * * @param \App\Location $location * @return \Illuminate\Http\Response */ public function destroy(Location $location) { } }