feat(tenant): expose ticket refund configuration

This commit is contained in:
2026-09-10 15:29:41 -03:00
parent 471a941587
commit 1564985259
4 changed files with 121 additions and 0 deletions

View File

@@ -138,6 +138,15 @@ class UpdateTenantRequest extends FormRequest
],
'display_cart_item_images' => ['sometimes', 'boolean'],
'scanner_category_validation_enabled' => ['sometimes', 'boolean'],
'allow_ticket_total_refund' => ['sometimes', 'boolean'],
'allow_ticket_partial_refund' => ['sometimes', 'boolean'],
'ticket_partial_refund_percentage' => [
'sometimes',
'numeric',
'decimal:0,2',
'min:0',
'max:99.99',
],
];
}
}