@extends('layouts.app') @section('title', 'Order Payment by Associate') @section('content')
@if (isOrderIncomplete($order))
@csrf
@endif
Student Id: {{ $graduate->student_id }}

Student Name: {{ $graduate->full_name }}

Order #{{ $order->invoice_number }}
@if($order->guest_number > 0)
GUEST TICKET: {{ $order->guest_number }}
@endif
{{ $order->ceremony->date_formatted }} - {{ $order->ceremony->time }}
{{ $order->ceremony->venue }}
{{ $graduate->institution->name }}
Order Amount: AUD ${{ numberFormat($order->total_amount) }}
({{$order->gst_included}} + Postage Fee: AUD ${{ $order->postage_fee }})
Order Status {!! orderStatus($order->order_status) !!}
Ordered Products
@foreach ($order->orderStaticProducts as $so) @endforeach @foreach ($order->orderProducts as $op) @endforeach
Image Product
{{ $so->commonProduct->name }}

- {{ $so->commonProduct->description }}

{{ $op->packageProduct->product_name }}

Size: {{ $op->product_size }}

@if($order->orderOtherProducts()->count()) @foreach ($order->orderOtherProducts as $po) @endforeach @endif
Image Product
{{ $po->otherProduct->product_name }} @if (!is_null($po->other_product_option_id))

- {{ $po->otherProductOption->name ?? '' }}

@endif @if ($po->quantity > 1)

QTY: {{ $po->quantity }}

@endif

AUD ${{ numberFormat($po->product_total_price) }}

@if ($po->postage_fee > 0)

Postage Fee: AUD ${{ numberFormat($po->postage_fee) }}

@endif
@endsection