Added the possibility to pass the parameter of JSON options like JSON_PRETTY_PRINT or JSON_UNESCAPED_UNICODE to the Response::json method.

This commit is contained in:
José M 2012-11-28 20:48:14 +01:00
parent 6140089eb3
commit a9760ecdbe
1 changed files with 4 additions and 2 deletions

View File

@ -89,14 +89,16 @@ public static function view($view, $data = array())
* @param mixed $data
* @param int $status
* @param array $headers
* @param int $json_options
* @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';
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.