Skip to content

Instantly share code, notes, and snippets.

@itsrachelfish
Created June 19, 2019 01:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itsrachelfish/0ac5d7fafe000ff9f98b34572f1b2f83 to your computer and use it in GitHub Desktop.
Save itsrachelfish/0ac5d7fafe000ff9f98b34572f1b2f83 to your computer and use it in GitHub Desktop.
Get all admin users
$users = User::whereHas('roles', function ($query) {
$query->where('role_id', '=', 1);
})->get();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment