Hello,
I have a tailor model like that :
fields:
....
where:
label: Où afficher le témoignage ?
type: checkboxlist
options:
accueil: Accueil
site_vitrine: Site vitrine
site_ecommerce: Site e-commerce
referencement: Référencement
So the resulting dump looks like that :
My question is, with twig syntax, how can I filter my collection to get only content with where attribute containing “accueil” for example.
{% set records = records.where(????).get() %}
The documentation is quite light on that point.
Thank you for your help