|
ZOO JOHOR
Jalan Gertak Merah, Taman Istana
80000 Johor Bahru, Johor General Line : +07-223 0404
|
|
Lead participant
{{ $order->user->first_name }} {{ $order->user->last_name }}
|
Purchase Date
{{ $order->created_at->format('d F Y - H:i') }}
|
Entry Date
@foreach ($entry_dates as $date)
{{ date('d F Y', strtotime($date)) }}
@endforeach
|
|
Quantity
@foreach ($order->productVariations as $variation)
{{ $variation->name }} x {{ $variation->pivot->quantity }}
@endforeach
|
Order No.
{{ $order->number }}
|
| Placed At | {{ $order->created_at->format('d F Y - H:i') }} |
| Cancelled | {{ $order->canlled->format('d F Y - H:i') }} |
| Total | {{ config('app.currency') }} {{ $order->total }} |
| Discount Code | {{ $order->discount->code }} |
| Status | {{ $order->status }} |
| Item | Price | Quantity | Total |
|---|---|---|---|
|
{{ $variation->name }}
{{ $variation->pivot->date }}
|
{{ config('app.currency') }} {{ $variation->pivot->unit_price }} | {{ $variation->pivot->quantity }} | {{ config('app.currency') }} {{ $variation->pivot->price }} |
| Subtotal | {{ config('app.currency') }} {{ $order->subtotal }} | ||
| Discount Amount | {{ config('app.currency') }} {{ $order->discount_amount }} | ||
| Tax | {{ config('app.currency') }} {{ $order->tax }} | ||
| Total | {{ config('app.currency') }} {{ $order->total }} Inclusive GST | ||