perPage = 10; } public function getStatusCode() { return $this->statusCode; } public function setStatusCode($statusCode) { $this->statusCode = $statusCode; return $this; } public function respondUnauthorized($message = 'Unauthorized action.') { return $this->setStatusCode(403)->respondWithError($message); } public function respond($data) { return response()->json($data); } public function modelNotFoundExceptionResult($e) { return $this->setStatusCode(404)->respondWithError($e->getMessage()); // return [ // 'status' => 404, // 'class' => method_exists($e, 'getModel') ? $e->getModel() : '', // 'value' => method_exists($e, 'getIds') ? $e->getIds() : '', // 'message' => // ]; } public function otherExceptions($e) { $msg = is_object($e) ? $e->getMessage() : $e; return $this->setStatusCode(400)->respondWithError($msg); // return [ // 'status' => 400, // 'message' => $e->getMessage() // ]; } protected function respondWithError($message) { return response()->json([ 'error' => [ 'message' => $message, ], ], $this->getStatusCode()); } /** * Retrieves current passport client from request */ public function getClient() { $client = request()->user()->token()->client; if(!empty($client) && !empty($client->name)){ return $client->name; } else{ return ''; } } }