Commit a9760ecd authored by José M's avatar José M

Added the possibility to pass the parameter of JSON options like...

Added the possibility to pass the parameter of JSON options like JSON_PRETTY_PRINT or JSON_UNESCAPED_UNICODE to the Response::json method.
parent 6140089e
...@@ -89,14 +89,16 @@ class Response { ...@@ -89,14 +89,16 @@ class Response {
* @param mixed $data * @param mixed $data
* @param int $status * @param int $status
* @param array $headers * @param array $headers
* @param int $json_options
* @return Response * @return Response
*/ */
public static function json($data, $status = 200, $headers = array()) public static function json($data, $status = 200, $headers = array(), $json_options = 0)
{ {
$headers['Content-Type'] = 'application/json; charset=utf-8'; $headers['Content-Type'] = 'application/json; charset=utf-8';
return new static(json_encode($data), $status, $headers); return new static(json_encode($data, $json_options), $status, $headers);
} }
/** /**
* Create a new response of JSON'd Eloquent models. * Create a new response of JSON'd Eloquent models.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment