Skip to content

Instantly share code, notes, and snippets.

@brifiction
Created February 4, 2020 00:34
Show Gist options
  • Save brifiction/54b94acc805c9174544ae152b385bd98 to your computer and use it in GitHub Desktop.
Save brifiction/54b94acc805c9174544ae152b385bd98 to your computer and use it in GitHub Desktop.
Laravel Relationship Conditions

Example of Laravel relationship where condition.

$users = User::with('account', 'role')->whereHas('role', function ($q) {
  $q->where('name', 'Administrator');
})->get();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment