Where, WhereLoose and WhereStrict - did you know about them?

Some Laravel functions are not mentioned or emphasized in the official docs, especially if they change from version to version. One of these examples is simple where() in Eloquent - what do you think, does it compare in a "strict" or "loose" way? Let me explain - we're talking about PHP operators of "equal" (==) and "identical" (===). So, what do you think, which operator is used here?
Product::where('category_id', 5)->get();
The answer will be even more confusing: it depends on Laravel version. You see, the change was made in Laravel 5.3. Up until 5.2, where() meant "identical" comparison. And if you wanted to use "equal" operator, there was a special function whereLoose(). From Laravel 5.3, it's the other way around: default where() means "equal" or "loose" comparison, and if you want do perform "strict" comparison - you can use whereStrict() function. If you want to read more, here's the link to the official 5.3 documentation.

No comments or questions yet...

Like our articles?

Become a Premium Member for $129/year or $29/month
What else you will get:
  • 58 courses (1054 lessons, total 46 h 42 min)
  • 78 long-form tutorials (one new every week)
  • access to project repositories
  • access to private Discord

Recent Premium Tutorials