From 53a606e6b418114fdc8f87762dfb364726ddc1ba Mon Sep 17 00:00:00 2001 From: omair saleh Date: Tue, 15 Mar 2022 15:02:23 +0800 Subject: [PATCH] show payment proof date in payment history --- .../bookings/elements/PaymentHistoryComponent.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/resources/assets/vue/components/bookings/elements/PaymentHistoryComponent.vue b/resources/assets/vue/components/bookings/elements/PaymentHistoryComponent.vue index 5b43ce54..28a3f966 100644 --- a/resources/assets/vue/components/bookings/elements/PaymentHistoryComponent.vue +++ b/resources/assets/vue/components/bookings/elements/PaymentHistoryComponent.vue @@ -207,6 +207,12 @@ +
+
+ Payment proof will be uploaded {{ (item.duration + 1) <= 0 ? 'today' : (item.duration + 1) === 2 ? 'tomorrow' : 'in '+(item.duration + 1)+'days'}} at 4:00 PM + {{item.duration >= 0 ? : 'Payment proof will be uploaded today at 4:00 PM' }} +
+