Overview
Modifiers are ways to slightly alter the way that a filter works.How To Use
Append:{modifierName}
to the type
of the filter.
Core Filter Modifiers
Some of the core filters provided by this package have modifiers.$like
:start
- matches only the start of fieldLIKE 'Laravel%'
.:end
- matches only the end of fieldLIKE '%Laravel'
.
$notLike
:start
- matches only the start of fieldNOT LIKE 'Laravel%'
.:end
- matches only the end of fieldNOT LIKE '%Laravel'
.
$in
:null
- also does aor "{$target}" is null
.
$notIn
:null
- also does aand "{$target}" is not null
.