Collection methods // using the username $users->toList(); // using the page title $pages->toList(); // using the filename $files->toList(); List Methods List Methods is a plugin providing methods to generate comma-separated list from collections like pages, users or files. It allows for custo… K4 K3 $mostPopularPage = $kirbyCollection ->sortBy('viewcount')->last() ->viewcount()->toInt(); // with collect plugin $mostPopularPage = $kirbyCollection ->collect()->max('content.viewcount'); Collect Adds support for Laravel collections to Kirby K4 K3