FYI, the list of operators (containing like everyone else) is in the code:
/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php protected $operators = array( '=', '<', '>', '<=', '>=', '<>', '!=', 'like', 'not like', 'between', 'ilike', '&', '|', '^', '<<', '>>', 'rlike', 'regexp', 'not regexp', );
Denial of responsibility:
Joel Larson's answer is correct. Received my contribution.
I hope this answer sheds more light on what is available through the Eloquent ORM (pointing people in the right direction). Although the link to the documentation would be far better, this link turned out to be elusive.
dean grande Nov 13 '14 at 6:00 2014-11-13 06:00
source share