pushCriteria(app(RequestCriteria::class)); } public function store($data) { return $this->model->create($data); } public function update(array $data, $id) { return $this->model->where('job_id', $id)->update($data); } public function getContactInfo($where) { return $this->model->where($where)->first(); } public function delJobsContact($jobs_id) { return $this->model->whereIn('job_id', $jobs_id)->delete(); } }