$object->getCompanyId(), 'name' => $object->getName(), 'designation' => $object->getDesignation(), 'email' => $object->getEmail(), 'phone' => $object->getPhone(), 'wechat_id' => $object->getWechatId() ]; } /** * @return array */ protected function rules(): array { return [ 'company_id' => 'required', 'name' => 'required' ]; } /** * @return array */ protected function messages(): array { return []; } }