Skip to content

Instantly share code, notes, and snippets.

@syads321
Created June 9, 2014 03:47
Show Gist options
  • Save syads321/b712e476d502aec7df7f to your computer and use it in GitHub Desktop.
Save syads321/b712e476d502aec7df7f to your computer and use it in GitHub Desktop.
DB::table('users')
->where('name', '=', 'John')
->orWhere(function($query)
{
$query->where('votes', '>', 100)
->where('title', '<>', 'Admin');
})
->get();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment