We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have the following fields:
NovaBelongsToDepend::make(__('Product'), 'product') ->options(\App\Models\Product::all()),
NovaBelongsToDepend::make('ProductOption') ->optionsResolve(function ($product) { return $product->option()->get(['id','name']); }) ->dependsOn('Product'),
When i want to use the field in Laravel Nova it does nothing and gives me the following error:
Is this a publishing error? I dont see the package in the publishing list?
I have tried everything but cant seem to get it to work.
The text was updated successfully, but these errors were encountered:
Run php artisan optimize php artisan cache:clear
php artisan optimize
php artisan cache:clear
and restart the project
Sorry, something went wrong.
Run php artisan optimize php artisan cache:clear and restart the project
@orlyapps plz help same error Laravel v8.83.2 Nova v3.26 not working
solved on package install https://github.com/scops/nova-belongs-to-dependency
No branches or pull requests
I have the following fields:
NovaBelongsToDepend::make(__('Product'), 'product')
->options(\App\Models\Product::all()),
NovaBelongsToDepend::make('ProductOption')
->optionsResolve(function ($product) {
return $product->option()->get(['id','name']);
})
->dependsOn('Product'),
When i want to use the field in Laravel Nova it does nothing and gives me the following error:
Is this a publishing error? I dont see the package in the publishing list?
I have tried everything but cant seem to get it to work.
The text was updated successfully, but these errors were encountered: