where('title', 'LIKE', "%$where[title]%"); if ($where['status'] !== '') $model = $model->where('status', $where['status']); $model = $model->where('is_del', 0); $model = $model->order('sort desc,id desc'); $count = $model->count(); $list = $model->page((int)$where['page'], (int)$where['limit'])->select()->toArray(); return compact('count', 'list'); } }