UniacidScope.php 624 B

12345678910111213141516171819202122232425
  1. <?php
  2. /****************************************************************
  3. * Author: libaojia
  4. * Date: 2017/7/11 下午10:36
  5. * Email: livsyitian@163.com
  6. * QQ: 995265288
  7. * User: 芸众商城 www.yunzshop.com
  8. ****************************************************************/
  9. namespace app\common\scopes;
  10. use Illuminate\Database\Eloquent\Builder;
  11. use Illuminate\Database\Eloquent\Model;
  12. use Illuminate\Database\Eloquent\Scope;
  13. class UniacidScope implements Scope
  14. {
  15. public function apply(Builder $builder, Model $model)
  16. {
  17. return $builder->where('uniacid',\YunShop::app()->uniacid);
  18. }
  19. }