INVOICE

ADDITIONAL DESIGN

registered trading name of

TWO TALES & CO. (PTY) LTD

REG: 2014/260746/07

VAT: NA

info@additional.co.za

additional.co.za

#{{ $order->order_number }}

Date: {{ $order->created_at->format('d M Y') }}
Invoice Date: {{ now()->format('d M Y') }}
Order Status: {{ $order->status }}

Bill To

{{ $order->customer_name }}

{{ $order->customer_email }}

{{ $order->customer_phone }}

Ship To

{{ $order->shipping_address }}

Order Items
@foreach($order->items as $item) @endforeach
Description Quantity Unit Price Total
{{ $item->product->name }}
@if($item->type === 'wallpaper' && $item->length)
{{ $item->length }}m length
@elseif($item->type === 'mural' && $item->width && $item->height)
{{ $item->width }}m × {{ $item->height }}m ({{ $item->width * $item->height }}m²)
@endif @if($item->is_sample)
Sample
@endif @if($item->specification)
Specification: {{ $item->specification }}
@endif
{{ $item->quantity }} R {{ number_format($item->price, 2) }} R {{ number_format($item->quantity * $item->price, 2) }}
Subtotal R {{ number_format($order->items->sum(fn($item) => $item->quantity * $item->price), 2) }}
@if($order->shipping_fee)
Shipping R {{ number_format($order->shipping_fee, 2) }}
@endif
Total R {{ number_format($order->total, 2) }}
PAID VIA YOCO