model->where($where)->first(); } public function getCompanyId() { return $this->model->pluck('company_id')->all(); } public function threeMonthBlackCompany() { return $this->model->where('type', 1)->where('created_at', '<', date('Y-m-d H:i:s', strtotime('-90 days')))->delete(); } }