== use OFFLINE\Boxes\Models\Page; // Get all published pages that have URLs and are not hidden in navigation function onStart() { $this['navPages'] = Page::query() ->currentPublished() ->where('url', '<>', '') ->where('is_hidden_in_navigation', false) ->whereNull('parent_id') // Only root level pages ->orderBy('nest_left') ->get(); } ==