Skip to content

Instantly share code, notes, and snippets.

@anthonybudd
Created February 6, 2017 16:51
Show Gist options
  • Save anthonybudd/ec15ca11247acea8c5f5dab43906a51b to your computer and use it in GitHub Desktop.
Save anthonybudd/ec15ca11247acea8c5f5dab43906a51b to your computer and use it in GitHub Desktop.
<?php
$greenProducts = Product::where('color', 'green');
//OR
$otherProducts = Product::where([
[
'key' => 'color',
'value' => 'green',
'compare' => '!='
],[
'taxonomy' => 'category',
'terms' => ['home', 'garden']
]
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment