Giter VIP home page Giter VIP logo

Comments (2)

KKSzymanowski avatar KKSzymanowski commented on May 18, 2024 2

As far as I know this has not been explained in the documentation, but it's fairly simple.

The User - Role relationship is a ManyToMany type, which means the User has many Roles and a Role is(or really can be) assigned to many Users.
In this case, as stated in the official framework documentation, we use a following relationship declaration:

public function posts()
{
    return $this->belongsToMany(Post::class);
}

Our case is exactly the same, meaning:

$user = User::first();

$roles = $user->roles; // Get all user roles.
// or
$roles = $user->roles()->get();

and

$role = Role::first();

$users = $role->users; // Get all users with this role assigned to them
// or
$users = $role->users()->get();

I hope this explains it for you.

By the way, this is an open source project, so you are more than engouraged to take a look at the package files.
The Role model uses Laratrust/Traits/LaratrustRoleTrait, and in this trait definition you'll find the relationship declaration.
It applies user configuration to be more flexible, but by default it would behave something like following:

public function users()
{
    return $this->belongsToMany(
        App\User::class,
        'role_user',
        'role_id',
        'user_id'
    );
}

which is just an explicit way of saying

public function users()
{
    return $this->belongsToMany(App\User::class);
}

As you can see there's not much magic going on.

from laratrust.

bobrovskikh avatar bobrovskikh commented on May 18, 2024

Thank you! Working!

$role = Role::where('name','=','administrator')->first();
$users = $role->users;

from laratrust.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.