@extends('layouts.app') @section('title') Order #{{ $order->number }} @endsection @section('content')

Order #{{ $order->number }}

If you have any questions, please feel free to contact us, our customer service center is working for you 24/7.

Order Summary

{{ $order->datetime_formatted }}

@if ($order->deleted_at)

{{ $order->deleted_at_formatted }}

@endif

{{ $order->total }} Points

{!! $order->shipping_status_badge !!}

@if ($order->tracking_link)

{!! $order->tracking_link !!}

{!! $order->tracking_number !!}

@endif
Shipping Details
@php $shipping = $order->shipping; @endphp

{{ $shipping->method_text }}

@if ($shipping->method == 1)

{{ $shipping->first_name }} {{ $shipping->last_name }}

{{ $shipping->street }}
{{ $shipping->postcode }} {{ $shipping->city }}
{{ $shipping->state }}, Malaysia

{{ $shipping->phone_number }}

@endif
Ordered Items
@foreach ($order->productVariations as $variation) @php $product = $variation->product; @endphp @endforeach
Item Price Quantity Total
@if ($product)
@if ($product->images->count()) {{ $product->name }} @endif
{{ $product->name }} Variation: {{ $variation->title }}
@endif
{{ $variation->pivot->unit_price }} Points {{ $variation->pivot->quantity }} {{ $variation->pivot->price }} Points
Subtotal {{ $order->subtotal }} Points
Total {{ $order->total }} Points
Point Used {{ $order->amount_to_pay }} Points
@endsection @section('js') @endsection