My portfolio is organized as follows:
Work > Client > Project
The Work page template displays all Projects like such:
$projects = page('work')->grandchildren()->visible()->sortBy('client', 'asc', 'year', 'desc');
When viewing a Project, Iβd like to have a Prev/Next project link that works in the same order as the Projects are displayed above on the Work page.
Using $page->hasNextVisible / $page->hasPrevVisible() results in only Projects of the same Client.
Thanks in advance.