Dinesh Uprety
@dineshuprety ·
Public
Group mixed AND and OR conditions
PHPOriginal CodeSnap example inspired by Laravel News. Source: https://laravel-news.com/eloquent-tips-tricks
PHP
CodeSnap // free canvas
Group mixed AND and OR conditions
<?php
$people = Person::query()
->where(fn ($q) => $q
->where('age', '>=', 18)
->where('plan', 'adult'))
->orWhere(fn ($q) => $q
->where('age', '>=', 65)
->where('plan', 'senior'))
->get();
// Further reading: https://laravel-news.com/eloquent-tips-tricks