Separate Avatar Provider for tenant
Hello,
Context: In v3 we have ->defaultAvatarProvider(BoringAvatarsProvider::class) and this change the provider both for the User and the Tenant in the panel.
Question: Is there a way to set a custom avatar provider only for the Tenant in the panel and not for user?
2 Replies
Why not use search? It was discussed this week. You need to add trait to the tenant model.
hasavatar
or whatever it is calledThank you for your answer. I used search before posting (I always do because I respect peoples time). No results.
What I want to achieve is to have the custom provider ONLY for the tenant and NOT for the user.
It seems to me that using
It seems to me that using
->defaultAvatarProvider()
method changes the provider for both the Tenant and the User.
Is there something I am missing?