Guest User

Untitled

a guest
Jun 24th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. public function everyItemHasParent(Collection $ids) : bool
  4. {
  5. /** @var Collection $parents */
  6. $parents = User::whereIn('parent_id', $ids)->count();
  7.  
  8. if ($parents->diff($ids)->isEmpty()) {
  9. return true;
  10. }
  11.  
  12. return false;
  13. }
Add Comment
Please, Sign In to add comment