flex
flex
FFilament
Created by flex on 10/26/2024 in #❓┊help
School-Class-Manager Usability-Problem
That are awesome hints. I will play around with it a bit. Thank you very much
7 replies
FFilament
Created by flex on 10/26/2024 in #❓┊help
School-Class-Manager Usability-Problem
Hm, in general you are right depending on my description. But the problem is, the system may handles multiple schools (tenants).
7 replies
FFilament
Created by flex on 11/4/2023 in #❓┊help
Register Resources from a Plugin without adding it as Plugin in Panel?
hm hm...
41 replies
FFilament
Created by flex on 11/4/2023 in #❓┊help
Register Resources from a Plugin without adding it as Plugin in Panel?
I think this works in general and may is a good approach for some scenarios. Unfortunately I still get
Route [filament.admin.resources.posts.index] not defined.
Route [filament.admin.resources.posts.index] not defined.
from somwhere in getNavigation() of panel. So panel defnitely take aware of the BlogPlugin. You know if I need to register any additional routes now? So far it was enough to register the resource and the resource contains all the pages in getPages().
public function packageBooted(): void
{
Filament::getDefaultPanel()
->plugin(new BlogPlugin());
}
public function packageBooted(): void
{
Filament::getDefaultPanel()
->plugin(new BlogPlugin());
}
`
41 replies
FFilament
Created by flex on 11/4/2023 in #❓┊help
Register Resources from a Plugin without adding it as Plugin in Panel?
but yeah, will try with getDefaultPanel(), didn't yet
41 replies
FFilament
Created by flex on 11/4/2023 in #❓┊help
Register Resources from a Plugin without adding it as Plugin in Panel?
but then it wouldn't make sense to put blog code into own package. i try to put all the optional features into packages. blog and shop are just some example. and I don't want to force the projects to use the blog, etc..
41 replies
FFilament
Created by flex on 11/4/2023 in #❓┊help
Register Resources from a Plugin without adding it as Plugin in Panel?
may I can try to use getDefaultPanel() from the blog package's provder and then add the plugin()
41 replies
FFilament
Created by flex on 11/4/2023 in #❓┊help
Register Resources from a Plugin without adding it as Plugin in Panel?
blog package should add resources to the core's panel 😛
41 replies
FFilament
Created by flex on 11/4/2023 in #❓┊help
Register Resources from a Plugin without adding it as Plugin in Panel?
core package delivers the panel
41 replies
FFilament
Created by flex on 11/4/2023 in #❓┊help
Register Resources from a Plugin without adding it as Plugin in Panel?
yes, thats what I am doing at the moment
41 replies
FFilament
Created by flex on 11/4/2023 in #❓┊help
Register Resources from a Plugin without adding it as Plugin in Panel?
just in the blog package's providers object
41 replies
FFilament
Created by flex on 11/4/2023 in #❓┊help
Register Resources from a Plugin without adding it as Plugin in Panel?
No description
41 replies
FFilament
Created by flex on 11/4/2023 in #❓┊help
Register Resources from a Plugin without adding it as Plugin in Panel?
I have the FilamentServiceProvider in my core package, not in the app My app almost knows nothing about Filament. No composer reuqirements, no Filament resources, etc.. everything about Filament is in my core package.
41 replies
FFilament
Created by flex on 11/4/2023 in #❓┊help
Register Resources from a Plugin without adding it as Plugin in Panel?
But using panel provider in my "core" package works pretty well.. except for those blog plugin
41 replies
FFilament
Created by flex on 11/4/2023 in #❓┊help
Register Resources from a Plugin without adding it as Plugin in Panel?
yes, I understand. But for now, I fortunately don't have the panel provider in the app. only in the core.
41 replies
FFilament
Created by flex on 11/4/2023 in #❓┊help
Register Resources from a Plugin without adding it as Plugin in Panel?
Hm, I hoped to continue the logic from v2. That I can "hook in" the resources from the blog package itself and don't need to make any adjustments somewhere else. This way I only had to composer install the package and functionality was fully ready. Would be great to avoid the panel provder in the laravel application to keep it as small as possible. But seems to be difficult?
41 replies
FFilament
Created by flex on 11/4/2023 in #❓┊help
Register Resources from a Plugin without adding it as Plugin in Panel?
thank you a lot btw, for taking time ❤️
41 replies
FFilament
Created by flex on 11/4/2023 in #❓┊help
Register Resources from a Plugin without adding it as Plugin in Panel?
but then the AdminPanelProvider need to be done in the laravel application? not in the core package?
41 replies
FFilament
Created by flex on 11/4/2023 in #❓┊help
Register Resources from a Plugin without adding it as Plugin in Panel?
blog/shop just bring some resources, controllers, views, etc...
41 replies
FFilament
Created by flex on 11/4/2023 in #❓┊help
Register Resources from a Plugin without adding it as Plugin in Panel?
there is only one panel
41 replies