Hi there,
I am trying to get a group of pages from Processwire, but I want to group all of the similar pages and show a count next to them. Is there something I can do in Processwire to achieve this?
I know I can get all of the pages and sort them like this and I can add ->count() to count them, but I want to achieve something like the SQL command GROUP_BY
$pages->find("template=template, sort=sort")
Thank you for any help here...