Digging Deeper
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
public function allowedFilters(): AllowedFilterList
{
return Filter::only(
Filter::field('data->*->array', [FilterType::JSON_CONTAINS]),
);
}
/*
* Allows:
*/
$filters = [
[
'type' => '$jsonContains',
'target' => 'data->languages->array',
'value' => [
'en',
'de',
]
]
];
