Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Filter::field('age', [FilterType::LESS_THAN_EQUAL_TO])
$filter = [ 'type' => '$lte', 'target' => 'age', 'value' => 18, ];
$sql = Person::filter([$filter])->toRawSql();
select * from "people" where "people"."age" <= 18