-
Description:When viewing the detail page for a It's unclear to me if this is a bug or I'm misunderstanding the design, but I think at the very least I should create this issue in case it's helpful to others. Here's the ajax request that's triggering the
My SetupGame Resource public function fieldsForDetail(NovaRequest $request)
{
return [
// fields removed
// I expected this to be sufficient for the `Boolean` field to show up on the Game details page
// However, I needed to define this exact field in `fields()` and then it showed up
BelongsToMany::make('Interests', 'availableInterests', Interest::class)
->fields(function (NovaRequest $request, $relatedModel) {
return [
Boolean::make('Unlocked', 'unlocked'),
];
}),
];
} Related issues: (mainly included these to help others find this issue from other issues)
Detailed steps to reproduce the issue on a fresh Nova installation: |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments
-
The api endpoint shows without resourceId and this clearly indicate it is fetching |
Beta Was this translation helpful? Give feedback.
-
Notice the referrer URL is a detail page for a resource. Here's a screenshot of the lock field not being shown: Perhaps the bug is in VueJS then, initiating the wrong backend request. |
Beta Was this translation helpful? Give feedback.
-
That's the parent resource URL, not the BelongsToMany Index request as posted above:
No. |
Beta Was this translation helpful? Give feedback.
-
Ohh, ok. I just reproduced it again... I must've had my tabs mixed up or something when I first submitted this and I was focused on the
I added a |
Beta Was this translation helpful? Give feedback.
-
@crynobone Can you help me understand why you converted this to a discussion? Was my last message some further indication this isn't a bug but I'm doing something wrong? |
Beta Was this translation helpful? Give feedback.
-
This behaviour is really strange and according to me, this is a real bug. I am using fields, fieldsForIndex and fieldsForDetails. When defining a BelongsToMany with a fields method to add pivot fields, it is ONLY working if I add it to fields, fieldsForIndex and fieldsForDetails. I understand that showing many related resources of type A from the details page of a resource B is using the index view of A, but why requiring A to exists in the fieldsForIndex of resource B ? It does not really make sense. |
Beta Was this translation helpful? Give feedback.
The api endpoint shows without resourceId and this clearly indicate it is fetching
ResourceIndexRequest
and therefore would usefieldsForIndex()
orfields()
.