@extends('layouts.shop') @section('title', 'Order Confirmation - Area 51 Booze') @section('content')

Order Confirmed!

Thank you for your order. We'll prepare it for delivery soon.

Order #{{ $order->id }}

Placed on {{ $order->created_at->format('M d, Y \a\t g:i A') }}

Customer Information

@if ($order->user_id)

Name: {{ $order->user->name }}

Email: {{ $order->user->email }}

@else

Name: {{ $order->guest_name }}

Email: {{ $order->guest_email }}

Phone: {{ $order->guest_phone }}

@endif

Delivery Information

Address: {{ $order->delivery_address }}

Payment Method: {{ ucfirst($order->payment_method) }}

Status: {{ ucfirst($order->status) }}

Order Items

@foreach ($order->items as $item)
{{ $item->product->name }}

{{ $item->product->name }}

{{ $item->quantity }} {{ $item->product->unit }} × ${{ number_format($item->price, 2) }}

${{ number_format($item->total, 2) }}

@endforeach
Subtotal: ${{ number_format($order->subtotal, 2) }}
Tax: ${{ number_format($order->tax_amount, 2) }}
Delivery: Free
Total: ${{ number_format($order->total, 2) }}

What's Next?

@if ($order->payment_method === 'cash')

We're preparing your order and will contact you soon with delivery details.

A delivery driver will bring your order and collect payment on delivery.

@else

Complete your EcoCash payment to confirm your order.

Once payment is confirmed, we'll start preparing your order.

@endif

You'll receive SMS/email updates about your order status.

Continue Shopping @auth View All Orders @endauth

Need help with your order?

Contact us at support@area51booze.com or call +1 (234) 567-890

@endsection