From 7992034739094748f9102ed41264b5571e28f60a Mon Sep 17 00:00:00 2001 From: omair saleh Date: Tue, 15 Mar 2022 15:04:26 +0800 Subject: [PATCH] show payment proof date in payment history --- .../components/bookings/elements/PaymentHistoryComponent.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/assets/vue/components/bookings/elements/PaymentHistoryComponent.vue b/resources/assets/vue/components/bookings/elements/PaymentHistoryComponent.vue index a256a637..c9ec250a 100644 --- a/resources/assets/vue/components/bookings/elements/PaymentHistoryComponent.vue +++ b/resources/assets/vue/components/bookings/elements/PaymentHistoryComponent.vue @@ -209,7 +209,7 @@
- Payment proof will be uploaded {{ (item.duration + 1) <= 0 ? 'today' : (item.duration + 1) === 2 ? 'tomorrow' : 'in '+(item.duration + 1)+'days'}} at 4:00 PM + Payment proof will be uploaded {{ (parseFloat(item.duration) + 1) <= 0 ? 'today' : (parseFloat(item.duration) + 1) === 2 ? 'tomorrow' : 'in '+(parseFloat(item.duration) + 1)+'days'}} at 4:00 PM