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

Cancel Order #{{ $order->code }}

@csrf @method('put')
@error('cancellation_note'){{ $message }}@enderror

Detail Order

Billing Address

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

Details

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