@extends('layouts.app') @section('title', 'Order Payment by Associate') @section('content')
Student Name: {{ $graduate->full_name }}
| Order Amount: |
AUD ${{ numberFormat($order->total_amount) }} ({{$order->gst_included}} + Postage Fee: AUD ${{ $order->postage_fee }}) |
| Order Status | {!! orderStatus($order->order_status) !!} |
| Image | Product |
|---|---|
|
|
{{ $so->commonProduct->name }}- {{ $so->commonProduct->description }} |
|
|
{{ $op->packageProduct->product_name }}Size: {{ $op->product_size }} |
| 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 }} @endifAUD ${{ numberFormat($po->product_total_price) }} @if ($po->postage_fee > 0)Postage Fee: AUD ${{ numberFormat($po->postage_fee) }} @endif |