Skip to content

Instantly share code, notes, and snippets.

@joetannenbaum
Last active February 6, 2017 17:12
Show Gist options
  • Save joetannenbaum/d75ca5a59301ab28e68a3ce7abb46c7f to your computer and use it in GitHub Desktop.
Save joetannenbaum/d75ca5a59301ab28e68a3ce7abb46c7f to your computer and use it in GitHub Desktop.
<?php
// GET /users/3kTMd
Route::get('/users/{id}', function($id) {
// $id is now an int
return User::find($id);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment