. * */ use function Vvveb\__; return [ 'billing_first_name' => [ ['notEmpty' => '', 'message' => '%s must not be empty', ], ['maxLength' => 100, 'message' => __('%s must not be greater than 100'), ], ], 'billing_last_name' => [ ['notEmpty' => '', 'message' => '%s must not be empty', ], ['maxLength' => 100, 'message' => __('%s must not be greater than 100'), ], ], /* 'billing_company' => [ ['notEmpty' => '', 'message' => '%s must not be empty', ], ['maxLength' => 100, 'message' => __('%s must not be greater than 100'), ], ],*/ 'billing_address_1' => [ ['notEmpty' => '', 'message' => '%s must not be empty', ], ['maxLength' => 100, 'message' => __('%s must not be greater than 100'), ], ], 'billing_address_2' => [ ['notEmpty' => '', 'message' => '%s must not be empty', ], ['maxLength' => 100, 'message' => __('%s must not be greater than 100'), ], ], 'billing_city' => [ ['notEmpty' => '', 'message' => '%s must not be empty', ], ['maxLength' => 100, 'message' => __('%s must not be greater than 100'), ], ], 'billing_post_code' => [ ['notEmpty' => '', 'message' => '%s must not be empty', ], ['maxLength' => 100, 'message' => __('%s must not be greater than 100'), ], ], 'billing_country_id' => [ ['notEmpty' => '', 'message' => '%s must not be empty', ], ], 'billing_region_id' => [ ['notEmpty' => '', 'message' => '%s must not be empty', ], ], /* 'billing.phone_number' => [ ['notEmpty' => '', 'message' => '%s must not be empty', ], ],*/ ];