How to only get list of tenants in the drop down if the user has any role to that tenant
Hello,
I am using multi-tenancy in my project.
I have around 3 tenants added and each user has different role with each tenant.
I prevent user to login to the tenant login page if that user has no access to that tenant, but they can login to another tenant.
But after they login to it they are presented with the tenants list drop down and it has all the tenants they are linked to.
I want to hide the tenants from the drop down menu if the user has no role for that tenant.
the companies are the tenants in my project. I understand that whatever companies are returned in the above function will be listed in the dropdown, but unfortunately I can't filter the companies out which users are not allowed to access because of no roles assigned to them.
Please let me know how do I make this work?
Thank you so much.
35 Replies
You can create a function that returns a relation with the roles filtered.
Then on the
Something like that
@Bruno Pereira that is exactly what I am trying to create but somehow not getting it to work.
I tried this but it doesn't seem to work
This is the error I get with the above functions
How do you have your DB structured?
this is the model_has_roles table.
we normally access the user roles for the selected tenant by using setPermissionsTeamId($company->id)
otherwise it doesn't get the roles of that user for that particular company/tenant

what about $this->companies()->whereRelation('roles','model_id',$this->id)
you just want to get the companies where the user has a role, right?
yes
let me try that
Call to undefined method App\Models\Company::roles()
ok ok
in your models do you have withPivot('company_id')?
for the User model?
or did you create a Model for the Pivot relation?
I have a pivot table but I didn't create model for pivot relations, how ever the company_id returns null for that user and pivot_company_id has the actual id
can you show the user model and company to check the relations?
wait please
Here is the Company.php Model
Here is the User.php model
sorry user model is bigger so it is attached as a file
Don't know if this works but
return $this->companies()->whereRelation('users.roles','model_id',$this->id);
If not you must query the roles table to return the company_ids and then search the Company model Company::where('id','IN',$companyIds)
this did not work.
return $this->companies()->whereRelation('users.roles','model_id',$this->id);
I am now trying to get the list of company ids for the 2nd method.
Or
this is what I get
what about with ->get() at the end?
let me try
it worked but it fetched all companies with roles and without roles
Now you have to play with the conditions. Like $query->isNotNull or wtv
can a user have a company without a role?
yes the users have a company without a role but they are not allowed to access the panel.
But since they are attached to multiple tenants they can login using another panel where they have roles.
The problem comes in when we have the list of tenants in the drop down, that is what is left to filter out, when the user clicks on the company that he has no roles with then it gives 404 error which is good, but it shouldn't really display the tenant link in the drop down in the first place.
so you need to add
something like that
The query looks so correct, but somehow it still gets that 3rd company which is not supposed to be there 😦
is the field of the role null in the DB?
not really, it just doesn't exists for that user with that company_id
the logged in user id is 4 and the company_id 1 and 2
it is clear in the table that the user has roles for companies with id 1 and 2 but the company with id 3 also appears

instead of $this->companies() put Company::
query the class itself instead of the relation
ok
same 😦
thats weird, the query should have worked :/
maybe someone with more understanding can help out
I will keep trying, may be there is something missing.
Thank you so much for your time and efforts.
Really appreciate it.
no prob, best of luck
@Bruno Pereira I think we were looking in the wrong table.
The roles table doesn't have company id but model_has_roles table does.
So I created a model named ModelHasRole and then used the query with it to get the desired results.
noice
Thank you so much