Make it possible to use a presenter with serializer by default if it exists
Description
We now have serializers and presenters.
We use serializers to create payload we consume on the frontend (typically using Vue components). This means that serializers are meant to provide data for the frontend code, thus for the user interface as well.
Presenters are designed to create a object-oriented substitute of view helpers.
Those are related concepts.
Proposal
When someone wants to serialize a resource, instantiate a presenter for this resource automatically if it exists, and pass it to the serialization entities instead of passing a resource itself.
What do you think about it @rymai?