Skip to content

Instantly share code, notes, and snippets.

@russweas
Created April 16, 2015 02:59
Show Gist options
  • Save russweas/7cd08c19e4f1f4f1a209 to your computer and use it in GitHub Desktop.
Save russweas/7cd08c19e4f1f4f1a209 to your computer and use it in GitHub Desktop.
Laravel Lumen CORS
$app->get('user/{id}', function($id) use ($app) {
return response()
->json([
"name" => 'Billy',
'age' => '42'
])
->header('Access-Control-Allow-Origin', '*');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment