/** * Display the specified resource. * * @param int $id * @return Response */ public function show($id) { if ($this->checkProjectPermissions($id) == false) { return ['error' => 'Access forbidden']; } return $this->service->read($id); }
/** * Display the specified resource. * * @param int $id * @return Response */ public function show($id) { try { return $this->service->read($id); } catch (ModelNotFoundException $e) { return response()->json($e->getMessage()); } }