Skip to content

Instantly share code, notes, and snippets.

@goesredy
Forked from cartoonclouds/withAndWhereHas.php
Created February 18, 2021 13:00
Show Gist options
  • Select an option

  • Save goesredy/07f35ccb8c40763fe8358b737e96a470 to your computer and use it in GitHub Desktop.

Select an option

Save goesredy/07f35ccb8c40763fe8358b737e96a470 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