i am facing a problem trying to use two filament plugins in may Laravel app, the plugins are 1. JoaopaulolndevFilamentEditProfileFilamentEditProfilePlugin 2. RmsramosActivitylogActivitylogPlugin;
when trying to use them, only the one that appears first is registered and the other is not
->plugin(
FilamentEditProfilePlugin::make()
->slug('my-profile')
->setTitle('My Profile')
-> setNavigationLabel('My Profile')
->setNavigationGroup('My Profile')
->setIcon('heroicon-o-user')
->setSort(10)
->shouldShowDeleteAccountForm(false)
->shouldShowBrowserSessionsForm()
->shouldShowAvatarForm(
value : true,
directory: 'avatars',
rules: 'mimes:jpeg,png|max:1024'
),
ActivitylogPlugin::make()
->navigationGroup('Administration')
->navigationIcon('heroicon-o-shield-check')
->navigationCountBadge(true)
)
in the example above, only the first plugin is registered, does anyone know how to solve it?`
I’ve tried to change the order taht they come to appear, but nothing, and withouth much experience with filament v3 I’vegot stuck.
Domingos Daniel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.