Order ID #{{ $order->invoice_number }}
Institution {{ $order->institution->name }}
Ceremony {{ $order->ceremony ? $order->ceremony->detail : 'N/A' }}
Full Name {{ $order->full_name }}
University Attended {{ $order->university_attended }}
Course Of Study {{ $order->course_of_study }}
Mobile {{ $order->mobile }}
Email {{ $order->email }}
Gown Type {{ $order->gown_type }}
Will Attend {!! yesNO($order->attend_status) !!}
Order Status {!! orderStatus($order->order_status) !!}
Payment By {{ $order->payment_by }}
Payment Status {!! statusHtml($order->payment_status) !!}
Total Amount AUD ${{ numberFormat($order->total_amount) }}
Merchant Fee AUD {{ calculateMerchantFee($order->merchant_fee, $order->total_amount) }}
Paid Amount AUD ${{ numberFormat($order->paid_amount) }}
Net Paid Amount AUD ${{ numberFormat($order->net_paid_amount) }}
Net Refunded Amount AUD ${{ numberFormat($order->refunded_amount) }}
Due Amount AUD ${{ numberFormat($order->due_amount) }}
Academic Regalia Status {!! academicRegaliaStatus($order->academic_regalia_status) !!}
Order Date {{ dateFormat($order->updated_at, config('custom.dfyhia2')) }}
@foreach ($order->orderAcademicProductDetails as $detail) @endforeach
Image Product Size Quantity
{{ $detail->academicProduct->name }} {{ $detail->academicProduct->name }} {{ $detail->size }} {{ $detail->quantity }}
@can('change-order') @if (!isArchived($order->archive))
@csrf
Change Order Status
@endif @endcan
@can('change-order') @if (!isArchived($order->archive) && $order->order_status == \App\Constant\Constant::ORDER_COMPLETE)
@csrf
Change Academic Regalia Status
@endif @endcan
@can('change-order') @if (!isArchived($order->archive) && $order->order_status == \App\Constant\Constant::ORDER_COMPLETE)
@csrf
Will Attend
@endif @endcan