Enhancing DDD approach on Filament #15853
danielhe4rt
started this conversation in
Ideas
Replies: 1 comment
-
Here is an example of a modular Filament app I work on every day - https://github.com/canyongbs/advisingapp Each module has a Plugin object, which can use |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hey there!
Recently I've started a project and it started to become too big to maintain in the regular Laravel/Filament structure.
Context
When I tried to break up some components, I had a good experience seeing how the
pages
,widgets
andresources
has the ability to be attached manually at theAdminPanelProvider
.However, I faced a couple of hours of a possible 'gambiarra' (jerry-rig) which failed miserably while I tried to attach a custom
cluster
at my provider, since the methodclusters()
doesn't exists.This is one of my current modules which I'm refactoring:
Feature Request
Thinking in projects that easily becomes massive, I would recommend/suggest:
Filament::registerCluster()
method$panel->clusters([])
methodBeta Was this translation helpful? Give feedback.
All reactions