Not seeing anything after following the instructions of installing and registering inside the NovaServiceProvider
Hi, I have installed the package and followed the instructions on registering inside the tools on NovaServiceProvider.
I cant see the import button on any of my resources even when I add
public static $canImportResource = true;
I am using Laravel Nova 4. Thanks
@essamtariq123 It doesn't appear on your resources, it appears in the navigation as a whole separate section of your Nova admin
@essamtariq123 any luck finding it?
Same issue here, i cant find anything after following the steps
@jgodstime please share a screenshot of your Nova navigation and the code you've used to register the tool
I had the same issue. For me it was because I customized Nova's menu. As mentioned in Nova's doc
If you have customized Nova's main sidebar menu, a link to your tool will not automatically display in Nova's sidebar. You will need to manually define your tool's menu inside your custom Nova::mainMenu callback.
So in the Nova::mainMenu callback I added
MenuSection::make('CSV Import')
->path('/csv-import')
->icon('upload'),
and it solved it :)
Nice one @liliced! I will add this to the readme
@essamtariq123 @jgodstime have either/both of you also customised the Nova menu in this way? Could this fix also work for you?