Skip to content

Instantly share code, notes, and snippets.

@winni4eva
Last active January 13, 2019 21:24
Show Gist options
  • Save winni4eva/4b4c6c8a563034e89ca8f4da53042a76 to your computer and use it in GitHub Desktop.
Save winni4eva/4b4c6c8a563034e89ca8f4da53042a76 to your computer and use it in GitHub Desktop.
Explicit Binding With Model Relationships
<?php
$router->get('/users/{user}', function ($resolvedUser) {
$user = $resolvedUser->load('posts');
dd($user);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment