Definition
Array/Object Structure
string
required
array,size:2
required
string|int|float
required
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Filter::field('age', [FilterType::BETWEEN]);
$filter = [
'type' => '$between',
'target' => 'age',
'value' => [18, 65,],
];
$sql = Person::filter([$filter])->toRawSql();
select * from "people" where "people"."age" between 18 and 65
