I'm aware you can change the path of a path by hooking into `Page::path` but I need to amend the URL rather than the path (change it to an external URL that's in a field on the page). $pages->addHookAfter('Page::path', function($event) { $page = $event->object; if ($page->products_categories_external) { bd($page); $event->return = "$page->products_categories_external"; } }); Any thoughts?