Fresh code drop

Group mixed AND and OR conditions

PHP

Original 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

Turn your code into a post.Five templates are free—no account needed.

Remix this snap