laravel dingo api response

Solutions on MaxInterview for laravel dingo api response by the best coders in the world

showing results for - "laravel dingo api response"
Montserrat
25 Feb 2017
1return $this->response->noContent();
2
3return $this->response->created($location);
4
5return $this->response->created();
6
7return $this->response->error('This is an error.', 404);
8
9return $this->response->errorNotFound();
10
11return $this->response->errorBadRequest();
12
13return $this->response->errorForbidden();
14
15return $this->response->errorInternal();
16
17return $this->response->errorUnauthorized();