From 30fe0d29e04c846f98163e19c6ee9e6be8674abd Mon Sep 17 00:00:00 2001 From: Omair Saleh Date: Wed, 15 Feb 2023 15:43:37 +0800 Subject: [PATCH] update customer's account --- app/Http/Resources/WalletTransactionResource.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Resources/WalletTransactionResource.php b/app/Http/Resources/WalletTransactionResource.php index fe112f9d..95db6492 100644 --- a/app/Http/Resources/WalletTransactionResource.php +++ b/app/Http/Resources/WalletTransactionResource.php @@ -31,7 +31,7 @@ class WalletTransactionResource extends JsonResource $booking = Transaction::where('payment_reference', $this->bill_no)->first()->owner; $marking = $booking ? $booking->marking : null; - $description = 'Payment For booking refs.'. $booking ? ''.$marking.'' : 'Please ask Tech Support'; + $description = 'Payment For booking refs.'. $marking ? ''.$marking.'' : 'Please ask Tech Support'; break; case 11: $description = 'Debit Voucher for '.$this->payment_reference;