'required|integer|min:1|max:365', ]; } /** * Get custom error messages for validation rules. * * @return array */ public function messages() { return [ 'code_binding_days.required' => 'The code binding days setting is required.', 'code_binding_days.integer' => 'The code binding days must be a number.', 'code_binding_days.min' => 'The code binding days must be at least 1 day.', 'code_binding_days.max' => 'The code binding days cannot exceed 365 days.', ]; } }