I have a Laravel application that contains an entity with a HasOne relationship from parent to child.
I'm now introducing Laravel Nova, and would like the parent's detail view to include all the fields from the child without my user having to click into it as you do with a Nova BelongsTo or HasOne field. They would look like a single record.
Assuming that I cannot modify the structure of the application, is there an existing method to do this? Can I override the detail screen with my own code? The Nova documentation doesn't address this specific use case, nor can I find any other questions on this topic online.
I don't care about needing to create or edit the entries, Nova will just be used to view them in this case.
Thanks