In a views I would like to display the totals of some fields and I would like to display them in the space between the filter and the table where all the fields are displayed
It's possible?
I have two routes: one use "POST" the other use "PUT".
In the corresponding controller for the "POST" route, I can get the request body / content with: $request->getContent().
Buuuut for the "PUT" route I try the same eg. $request->getContent() and it always return null.
I have tried a bunch of things, what could I be missing ?