merge([ 'phone_number' => normalizeTurkmenPhoneNumber($this->phone_number), ]); } /** * Get the validation rules that apply to the request. * * @return array */ public function rules(): array { return [ 'phone_number' => ['required', 'integer', 'between:61000000,71999999'], ]; } }