Skip to content

Instantly share code, notes, and snippets.

@bericp1
Created June 30, 2016 18:35
Show Gist options
  • Save bericp1/d0d6ab900ebae005b887e064baecefb5 to your computer and use it in GitHub Desktop.
Save bericp1/d0d6ab900ebae005b887e064baecefb5 to your computer and use it in GitHub Desktop.
class FriendshipRepository implements Contract {
public function countAccepted($user) {
$user = $user instanceof User ? $user->id : $user;
return $this->model->where('user_id', $user)
->where('status', 'accepted')
->count();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment