It seems like the tagManager does not show the proper date when the tags are loaded.
/* @var $tagManager \FPN\TagBundle\Entity\TagManager */
$tagManager = $this->get('fpn_tag.tag_manager');
$tagManager->loadTagging($order);
While iterating over order.tags in Twig, and making use of tag.createdAt that field contains the date the Tag itself was originally created.
In what way can I get the date the Taggable Order originally was tagged?
It seems like the tagManager does not show the proper date when the tags are loaded.
While iterating over
order.tagsin Twig, and making use oftag.createdAtthat field contains the date theTagitself was originally created.In what way can I get the date the
TaggableOrder originally was tagged?