Skip to content

Instantly share code, notes, and snippets.

@sander3
Created October 3, 2018 15:28
Show Gist options
  • Save sander3/aa986317d0e40f0714bbd50a9bfc49cf to your computer and use it in GitHub Desktop.
Save sander3/aa986317d0e40f0714bbd50a9bfc49cf to your computer and use it in GitHub Desktop.
Medium post 1, Gist 1
$users = App\User::with(['posts' => function ($query) {
    $query->where('title', 'like', '%first%');
}])->get();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment