Laravel - Return json along with http status code

后端 未结 8 1911
北恋
北恋 2020-12-08 03:57

If I return an object:

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

the status code will be 200. How can I change it to 201, with

8条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-08 04:23

    This is how I do it in Laravel 5

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

    Or using a helper function:

    return response()->json(['hello' => $value], 201); 
    

提交回复
热议问题