Skip to content

Instantly share code, notes, and snippets.

@winni4eva
Created January 13, 2019 16:44
Show Gist options
  • Save winni4eva/eb16d99867c6019324a98de519faabd2 to your computer and use it in GitHub Desktop.
Save winni4eva/eb16d99867c6019324a98de519faabd2 to your computer and use it in GitHub Desktop.
User Query
<?php
$router->get('/users/{id}', function($id){
$user = App\User::findOrFail($id);
dd($user);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment