Browse Source

Add documentation for JSONP Response

Jesse O'Brien 12 years ago
parent
commit
cf6e2a768b
1 changed files with 4 additions and 0 deletions
  1. 4 0
      laravel/documentation/views/home.md

+ 4 - 0
laravel/documentation/views/home.md

@@ -62,6 +62,10 @@ Sometimes you will need a little more control over the response sent to the brow
 
 	return Response::json(array('name' => 'Batman'));
 
+#### Returning a JSONP response:
+
+	return Response::jsonp(array('name' => 'Batman'));
+
 #### Returning Eloquent models as JSON:
 
 	return Response::eloquent(User::find(1));