Skip to content

Instantly share code, notes, and snippets.

@NoelDavies
Created November 21, 2014 17:45
Show Gist options
  • Save NoelDavies/d6d45223323ba073d243 to your computer and use it in GitHub Desktop.
Save NoelDavies/d6d45223323ba073d243 to your computer and use it in GitHub Desktop.
So proud of my teapot
<?php
Route::any('/teapot', function(){
return Response::json([
'data' => [
'message' => 'I\'m a teapot',
'result' => [
'teapot' => true
]
],
'errors' => [],
], 418 );
});
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment