Level 75
Dec 9, 2021
2
Level 4
Eloquent ignore zero, but don't ignore NULL
I want ignore ZERO category. But it is also ignoring NULL.
Product::where('category', '<>', 0)->first();
Product::where('category', '!=', 0)->first();
Product::where('category', '!==', 0)->first();
Product::whereNotIn('category', [0])->first();
Please or to participate in this conversation.