I have a new Symfony 6.4 web application, pretty barebone.
I'm trying to format a date using the Twig format_datetime filter:
{{ post.createdAt ? post.createdAt|format_datetime('c') : '' }}
When calling the page, I get a 500 error
Unknown "format_datetime" filter in post/index.html.twig at line 28.
I do not understand what I'm missing.