I try to use pagination to show one subpage at time.
$subpages = $page->children()->paginate(1);
first page url looks like this:
localhost:8888/workshops
next page looks like this:
localhost:8888/workshops/page:2
when i now try to use the main navigation i get an URL like this:
localhost:8888/workshops/team
instead of:
localhost:8888/team
anyone knows how to fix this?
Thanks!
Flo