use the helper function in laravel 5.1 instead:
return response()->json(['name' => 'Abigail', 'state' => 'CA']);
This will create an instance of IlluminateRoutingResponseFactory
. See the phpDocs for possible parameters below:
/**
* Return a new JSON response from the application.
*
* @param string|array $data
* @param int $status
* @param array $headers
* @param int $options
* @return SymfonyComponentHttpFoundationResponse
* @static
*/
public static function json($data = array(), $status = 200, $headers = array(), $options = 0){
return IlluminateRoutingResponseFactory::json($data, $status, $headers, $options);
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…