pechtelt
Custom Styling Panel
No worries and thanks for your time @Dennis Koch. I think i'm not clearly enough - i will explain a bit more:
We are building an multi-tenancy application and the TenantPanel should be whitelabel. But right now i set in the TenantPanelProvider those values:
What i want to get done is as user1 is logging in brandLogo & favicon should show logo-user1.svg and favicon-user1.svg for example.
Same for user2, etc.
Basically get the styling colors (done with above example), but looking for the solution to also be able to change brandLogo and favicon based on user.
13 replies
how to change login page background and make the icon bigger
Maybe this helps?
https://github.com/filamentphp/filament/discussions/9280
9 replies
New Record Modal does not work in Select Form
Don't know for sure but try to help:
- What is the relation between user and category
I have an working version and did it like this:
->createOptionForm(function () {
return [
TextInput::make('name')
->label('Name')
->required()
->unique(),
Hidden::make('user_id')->default(Auth::id()),
];
})
->createOptionUsing(function (array $data): int {
return ContactList::create($data)->id;
}),
Again, don't know for sure but hope this helps!
4 replies
Dynamic columns on Importer class
I had the same question, found out that you can make use of getOptionsFormComponents() on your importer class.
See: https://discord.com/channels/883083792112300104/1233021779102924852
10 replies
Logger plugin only for super_admin
Maybe you can check this: https://log-viewer.opcodes.io/docs/3.x
8 replies
redirect to edit/view resource modals or open them manually
You mean this?; https://filamentphp.com/docs/3.x/actions/prebuilt-actions/create#redirecting-after-creation
4 replies