-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The BelongsTo field is not displayed. #52
Comments
A BelongsTo would be really useful to have! |
is this the same like #39 ? |
@YarinceP We are glad you enjoy the package! I would like to understand the issue better. Would you please post the code within the Thanks! |
The same problem. Laravel Nova 2.10.1 Parent fields: HasMany::make(__('Assets'), 'assets', Asset::class)->inline(), Asset fields: BelongsTo::make(__('Asset type'), 'assetType', AssetType::class)->inline(),
Text::make(__('Quantity'), 'quantity'),
BelongsTo::make(__('Asset manufacturer'), 'assetManufacturer', AssetManufacturer::class)->inline(),
BelongsTo::make(__('Asset model'), 'assetModel', AssetModel::class)->inline(), But displayed only |
Just hit this during my initial testing of using this (on top of #42 ) and based on this hiding a completely unrelated BelongsTo field, it seems this isn't quite ready for primetime yet |
Hi thanks for the Awesome package! 💯
I have a child resource with a BelongsTo relationship of another model, but this is not shown in any view of the parent resource.
The text was updated successfully, but these errors were encountered: