HasJobsTrait.php 1.0 KB

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