HasDepartmentsTrait.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. namespace catchAdmin\permissions\model;
  3. trait HasDepartmentsTrait
  4. {
  5. /**
  6. *
  7. * @time 2019年12月08日
  8. * @return mixed
  9. */
  10. public function departments()
  11. {
  12. return $this->belongsToMany(Department::class, 'role_has_departments', 'department_id', 'role_id');
  13. }
  14. /**
  15. *
  16. * @time 2019年12月08日
  17. * @return mixed
  18. */
  19. public function getDepartments()
  20. {
  21. return $this->departments()->select();
  22. }
  23. /**
  24. *
  25. * @time 2019年12月08日
  26. * @param array $departments
  27. * @return mixed
  28. */
  29. public function attachDepartments(array $departments)
  30. {
  31. if (empty($departments)) {
  32. return true;
  33. }
  34. sort($departments);
  35. return $this->departments()->attach($departments);
  36. }
  37. /**
  38. *
  39. * @time 2019年12月08日
  40. * @param array $departments
  41. * @return mixed
  42. */
  43. public function detachDepartments(array $departments = [])
  44. {
  45. if (empty($departments)) {
  46. return $this->departments()->detach();
  47. }
  48. return $this->departments()->detach($departments);
  49. }
  50. }