ScopeTrait.php 981 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @filename ScopeTrait.php
  5. * @createdAt 2020/6/21
  6. * @project https://github.com/yanwenwu/catch-admin
  7. * @document http://doc.catchadmin.com
  8. * @author JaguarJack <njphper@gmail.com>
  9. * @copyright By CatchAdmin
  10. * @license https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt
  11. */
  12. namespace catcher\traits\db;
  13. use catchAdmin\permissions\model\Users;
  14. trait ScopeTrait
  15. {
  16. /**
  17. * 创建人
  18. *
  19. * @time 2020年06月17日
  20. * @param $query
  21. * @return mixed
  22. */
  23. public function scopeCreator($query)
  24. {
  25. if (property_exists($this, 'field') && in_array('creator_id', $this->field)) {
  26. return $query->addSelectSub(function () {
  27. $user = app(Users::class);
  28. return $user->whereColumn($this->getTable() . '.creator_id', $user->getTable() . '.id')
  29. ->field('username');
  30. }, 'creator');
  31. }
  32. return $query;
  33. }
  34. }