My question is very easy. How can I specify an http method while using path() helper? I would like to be able to delete a record with it so the DELETE method is necessary. Lets say that my path looks like this:
{{ path("post_delete", {"id": post.id}) }}
where 'post' is twig variable of course. Any idea what I need to put where to achieve my goal?