বস্ত্র ভিলা

E-commerce Store

Email: info@vastraavillaa.com

Phone: +8801617-512307

INVOICE

Invoice #: {{ $order->order_number }}

Date: {{ $order->created_at->format('M d, Y') }}

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

Bill To:

@if ($order->billing_address)

{{ $order->billing_address['name'] ?? trim(($order->billing_address['first_name'] ?? '') . ' ' . ($order->billing_address['last_name'] ?? '')) }}

{{ $order->billing_address['address'] ?? '' }}

{{ $order->billing_address['city'] ?? '' }}

{{ $order->billing_address['country'] ?? '' }}

Phone: {{ $order->billing_address['phone'] ?? '' }}

@else

No billing address available

@endif

Ship To:

@if ($order->shipping_address)

{{ $order->shipping_address['name'] ?? trim(($order->shipping_address['first_name'] ?? '') . ' ' . ($order->shipping_address['last_name'] ?? '')) }}

{{ $order->shipping_address['address'] ?? '' }}

{{ $order->shipping_address['city'] ?? '' }}

{{ $order->shipping_address['country'] ?? '' }}

Phone: {{ $order->shipping_address['phone'] ?? '' }}

@else

No shipping address available

@endif
@forelse($order->orderItems as $item) @empty @endforelse
Product Price Qty Total
@if ($item->product && $item->product->image) {{ $item->product->name }} @else
No Image
@endif
{{ $item->product->name ?? 'N/A' }}
@if ($item->color) Color: {{ $item->color }} @endif @if ($item->size) {{ $item->color ? ' | ' : '' }}Size: {{ $item->size }} @endif
৳{{ number_format($item->price, 2) }} {{ $item->quantity }} ৳{{ number_format($item->total, 2) }}
No items in this order
Subtotal: ৳{{ number_format($order->subtotal, 2) }}
Delivery Charge: ৳{{ number_format($order->shipping, 2) }}
Total: ৳{{ number_format($order->total, 2) }}

Payment Method: {{ ucfirst(str_replace('_', ' ', $order->payment_method)) }}

Payment Status: {{ ucfirst($order->payment_status) }}