cakephp-version
cakephp-version copied to clipboard
Ordering and paginating versions
Hi
How do you order the versions for an entity to have the latest first?
How do you paginate the results?
I fixed it in project code with
$versions = $textBox->versions();
$versionList = [];
foreach ($versions as $version) {
$versionList[$version->version_id] = $version->version_id;
}
$versionList = array_reverse($versionList, true);
for a dropdown
but it would be nice if the table itself had a finder for this.
Probably quite straight forward with Collections::combine