123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- /**
- * User: Mike
- * Email: m@9026.com
- * Date: 2017/1/12
- * Time: 17:52
- */
- namespace App\Repositories\Album\Criteria;
- use App\Repositories\Base\Criteria;
- use App\Repositories\Contracts\RepositoryInterface as Repository;
- class AgentWhere extends Criteria {
- private $search = [];
- private $store_id;
- /**
- * MultiWhere constructor.
- * @param array $search
- *
- */
- public function __construct(array $search, int $store_id)
- {
- $this->search = $search;
- $this->store_id = $store_id;
- }
- /**
- * @param $model
- * @param RepositoryInterface $repository
- * @return mixed
- */
- public function apply($model, Repository $repository)
- {
- if (isset($this->search['keyword']) && $this->search['keyword']) {
- $keyword = '%' . $this->search['keyword'] . '%';
- $model = $model->where([['name','like',$keyword],['store_id',$this->store_id]])
- ->orwhere([['id','like',$keyword],['store_id',$this->store_id]])
- ->orwhere([['address','like',$keyword],['store_id',$this->store_id]])
- ->orwhere([['phone','like',$keyword],['store_id',$this->store_id]]);
- } else {
- $model = $model->where([['store_id', $this->store_id]]);
- }
- if (isset($this->search['status']) && $this->search['status']) {
- $status = $this->search['status'];
- $model = $model->whereHas('user', function ($model) use ($status) {
- if ($status == 3) {
- $model->where('is_boss', 1);
- }
- })->with(['user:username as nickname,is_boss']);
- if ($status == 2) {
- $model = $model->where([['status', 1]]);
- }
- if ($status == 1) {
- $model = $model->where([['status', 0]]);
- }
- }
- return $model;
- }
- }
|