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) !!}
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('institution-edit-academic-order')
@if (!isArchived($order->archive))
@csrf
Change Order Status
@endif
@if (!isArchived($order->archive) && $order->order_status == \App\Constant\Constant::ORDER_COMPLETE)
@csrf
Will Attend
@endif
@endcan