Skip to content

Instantly share code, notes, and snippets.

@iamdtang
Created April 26, 2015 17:18
Show Gist options
  • Save iamdtang/4a1bd27eb4a33bfce7dc to your computer and use it in GitHub Desktop.
Save iamdtang/4a1bd27eb4a33bfce7dc to your computer and use it in GitHub Desktop.
search dvds by genre name
$dvds = Dvd::with('genre', 'rating', 'label')
->whereHas('genre', function($query) use ($genre_name) {
$query->where('genre_name', '=', $genre_name);
})
->get();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment