@extends('layouts.app') @section('title', 'Graduation Ceremony') @section('page-specific-styles') @endsection @section('content')
Student Id:

{{ $graduate->student_id }}


Order # {{ $graduate->order->invoice_number }}
@if (!is_null($graduate->seat_number))
Seat Number
{{ $graduate->seat_number }}
@endif @if($graduate->order->guest_number > 0)
GUEST TICKET: {{ $graduate->order->guest_number }}
@endif
{{ $graduate->order->ceremony->date_formatted }} - {{ $graduate->order->ceremony->time }}
{{ $graduate->order->ceremony->venue }}
{{ $graduate->institution->name }}
{{--
Order # {{ $graduate->campus }}
--}}
{{ $graduate->full_name }}
{{ $graduate->mobile }}
{{--
www.GraduationCeremony.com.au
--}}
@php $order = $graduate->order; @endphp @if ($order))
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 }}

@php // $purchaseds = $order->orderOtherProducts->where('collection_show', config('custom.yes_text')); $purchaseds = getPurchasedPreProducts($order->id); @endphp @if (count($purchaseds) > 0)
Purchased Products
@foreach ($purchaseds as $po) @endforeach
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
@endif @endif @endsection