Skip to content

Instantly share code, notes, and snippets.

@cartoonclouds
Created September 27, 2019 06:26
Show Gist options
  • Save cartoonclouds/acfe6edabb06c16c2152ff1cdaddd8f8 to your computer and use it in GitHub Desktop.
Save cartoonclouds/acfe6edabb06c16c2152ff1cdaddd8f8 to your computer and use it in GitHub Desktop.
Laravel - WithAndWhereHas Scope
public function scopeWithAndWhereHas($query, $relation, $constraint){
return $query->whereHas($relation, $constraint)
->with([$relation => $constraint]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment