Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Laravel - Return json along with http status code

If I return an object:

return Response::json([     'hello' => $value ]); 

the status code will be 200. How can I change it to 201, with a message and send it with the json object?.

I don't know if there is a way to just set the status code in Laravel.

like image 564
Galivan Avatar asked Jun 30 '15 06:06

Galivan


1 Answers

You can use http_response_code() to set HTTP response code.

If you pass no parameters then http_response_code will get the current status code. If you pass a parameter it will set the response code.

http_response_code(201); // Set response status code to 201 

For Laravel(Reference from: https://stackoverflow.com/a/14717895/2025923):

return Response::json([     'hello' => $value ], 201); // Status code here 
like image 142
Tushar Avatar answered Oct 07 '22 01:10

Tushar