User model, with an attribute usertype, values 1=Admin, 2=User, 3=Worker. This works, initially I had a single resource to manage these. I've been trying to split it into separate resources, i.e.: AdministratorResource, UserResource, and WorkerResource. However, no matter what I change or try all three of the resources end up showing the users. I've tried creating a separate Administrator model, I've added an override for the EloquentQuery:Users > list , rather than the relevant info from the resource I'm trying to view.Administrator extends the User model, it was just an attempt to provide the resource with a different model.