How can I use same Resources for multiple panels?

Example - I have Invoice Resources. I want to get access from Admin, Manager and Sale . How should I implement?
Solution
@mgkyawzayya I think you need to implement two discoverResources in your panel provider. Like that.
->discoverResources(
    app_path('Filament/App/Resources'), 'App\\Filament\\App\\Resources',
)
->discoverResources(
    app_path('Filament/Resources'), 'App\\Filament\\Resources'
)
Was this page helpful?