model->whereHas('tpls',function ($query){ $query->where(['tpl_type'=>1]); })->with('tpls')->where($where)->get(); } public function getTpl($where) { return $this->model->where($where)->first(); } public function createTpl($data) { return $this->model->create($data); } }