Adding detail pages to custom page
Hi,
I've built a custom page which shows up on the main dashboard nav, not really associated to any resource.
On that page, based on some interactions, you will get a listing of some models. I would like to add detail pages to those models. Is there some kind of standard way to do this?
Thanks for the tips!
4 Replies
Sounds like you want a cluster? Or you could use modals(actions) ?
Hey, thanks for the tips! The detail pages will also have quite a bit of interactivity, so I'd rather not render them in modals. Normally I'd just make a laravel route for this, but a cluster you think is a good idea? Consider it will essentially just be a listing page + a detail page which changes its content based on the passed model.
Listing and detail sounds like a resource tbh... Clusters are handy for likes of tab navigation with direct access to a complicated page. So you can create another page just don't auto-register it in the navigation and add it in.
Great thanks! My usecase is not connected to a particular model so I can't just make a resource setup, but I will try just adding a new page and figuring out the routing. Thanks 🙂