You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First off thanks for creating this library. I've found it very useful.
I did notice the following which can occur in certain instances where you're including other Nova Resource generating Packages.
There is a type hint on line 48 of src/Http/Controllers/ImportController.php for an App\Nova\Resource class which fails if the Resource is from another vendor package which generally reference Laravel\Nova\Resource and not one created locally.
Since Laravel\Nova\Resource as NovaResource is already imported, the fix was was just a matter of changing the Resource type hint to NovaResource
First off thanks for creating this library. I've found it very useful.
I did notice the following which can occur in certain instances where you're including other Nova Resource generating Packages.
There is a type hint on line 48 of
src/Http/Controllers/ImportController.php
for anApp\Nova\Resource
class which fails if the Resource is from another vendor package which generally referenceLaravel\Nova\Resource
and not one created locally.Since
Laravel\Nova\Resource
asNovaResource
is already imported, the fix was was just a matter of changing theResource
type hint toNovaResource
I think #7 might be related to this issue.
The text was updated successfully, but these errors were encountered: