From 0e823da1b2685da44dc58280ae5df9cc6b1ed9aa Mon Sep 17 00:00:00 2001 From: Omair Saleh Date: Tue, 24 Jan 2023 06:21:02 +0800 Subject: [PATCH] customer support interface --- resources/views/pages/customer_support.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/pages/customer_support.blade.php b/resources/views/pages/customer_support.blade.php index aae23994..7bd75b7f 100644 --- a/resources/views/pages/customer_support.blade.php +++ b/resources/views/pages/customer_support.blade.php @@ -67,7 +67,7 @@

Status: {{$booking->status === 3 ? 'Complete' : 'In Progress'}}

Purchase Order Status: {{$purchaseOrder ? ($purchaseOrder->status === 3 ? 'Approved' : ($purchaseOrder->status === 1 ? 'Pending Approval' : 'Incomplete Submission')) : 'Pending Submission'}}

@if($payments)

Payment History:

@endif - @php $i = 0; @endphp + @php $i = 1; @endphp @foreach($payments as $payment) @php $bill = $payment->transactions()->where('type', \App\Classes\ValueObjects\Constants\TransactionType::BILL)->first(); @@ -127,7 +127,7 @@

Status: {{$booking->status === 3 ? 'Complete' : 'In Progress'}}

Purchase Order Status: {{$purchaseOrder ? ($purchaseOrder->status === 3 ? 'Approved' : ($purchaseOrder->status === 1 ? 'Pending Approval' : 'Incomplete Submission')) : 'Pending Submission'}}

@if($payments)

Payment History:

@endif - @php $i = 0; @endphp + @php $i = 1; @endphp @foreach($payments as $payment) @php $bill = $payment->transactions()->where('type', \App\Classes\ValueObjects\Constants\TransactionType::BILL)->first();