Get all users with a role using Spatie Laravel-Permission package

March 19, 2025

This one is a reminder to myself as I keep forgetting how to get all users with a give role/roles.

This simple line of code can get you all the users with the given role name, for example 'admin' .

$users = User::role('admin')->get(); // Get the collection of users with 'admin' role

This will return a collection of users with 'admin' role.

To get the first item from the user model, try below.

$users = User::role('admin')->first(); // Get the first model

To get the last item from the user model, try below.

$users = User::role('admin')->latest()->first(); // Get the last model

Good one.