Skip to content

Instantly share code, notes, and snippets.

@paulredmond
Last active April 7, 2017 06:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulredmond/cbca443b537dae035d6c8bfb737499f3 to your computer and use it in GitHub Desktop.
Save paulredmond/cbca443b537dae035d6c8bfb737499f3 to your computer and use it in GitHub Desktop.
Example Laravel Route that Returns Request Headers for Demonstration Purposes
<?php
Route::get('/example', function () {
return request()->headers->all();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment