@extends('layouts.admin') @section('content')

Order Shipment #{{ $shipment->order->code }}

@csrf @method('put')

Detail Order

Billing Address

{{ $shipment->order->customer_company }} {{ $shipment->order->customer_last_name }}
{{ $shipment->order->customer_address1 }}
{{ $shipment->order->customer_address2 }}
Email: {{ $shipment->order->customer_email }}
Phone: {{ $shipment->order->customer_phone }}
Postcode: {{ $shipment->order->customer_postcode }}

Details

ID: #{{ $shipment->order->code }}
{{ $shipment->order->order_date }}
Status: {{ $shipment->order->status }}
Payment Status: {{ $shipment->order->payment_status }}
Shipped by: {{ $shipment->order->shipping_service_name }}
@forelse ($shipment->order->orderItems as $item) @empty @endforelse
# Item Qty Total
{{ $item->sku }} {{ $item->name }} {{ $item->qty }} {{ $item->sub_total }}
Order item not found!
  • Subtotal {{ $shipment->order->base_total_price }}
  • Tax(10%) {{ $shipment->order->tax_amount }}
  • Shipping Cost {{ $shipment->order->shipping_cost }}
  • Total {{ $shipment->order->grand_total }}
@endsection