{{-- Top bar (hidden on print) --}}
Back to Order
{{-- Header --}}
🧠 BrainyToy
Smart Toys for Smart Kids

INVOICE

#{{ $order->order_number }}

{{-- Meta row --}}
Invoice Date
{{ $order->created_at->format('d M Y') }}
Payment Method
{{ str_replace('_', ' ', $order->payment_method) }}
Order Status
{{ $order->status }}
{{-- Addresses --}}
Bill To / Ship To
{{ $order->shipping_name }}
{{ $order->shipping_address }}
{{ $order->shipping_city }} @if($order->shipping_district), {{ $order->shipping_district }}@endif
📞 {{ $order->shipping_phone }}
@if($order->shipping_email)✉️ {{ $order->shipping_email }}@endif
From
BrainyToy
📦 BrainyToy Store
🌐 www.brainytoy.shop
✉️ admin@brainytoy.com
@if($order->order_notes)
Note: {{ $order->order_notes }}
@endif
{{-- Items --}}
Order Items
@foreach($order->items as $item) @endforeach
Product Qty Unit Price Total
{{ $item->product_name }}
{{ $item->product_name }}
@if($item->product_sku ?? false)
SKU: {{ $item->product_sku }}
@endif
{{ $item->quantity }} ৳{{ number_format($item->price, 2) }} ৳{{ number_format($item->total, 2) }}
{{-- Totals --}}
Subtotal ৳{{ number_format($order->subtotal, 2) }}
@if($order->discount_amount > 0)
Discount -৳{{ number_format($order->discount_amount, 2) }}
@endif
Shipping ৳{{ number_format($order->shipping_charge, 2) }}
Total ৳{{ number_format($order->total, 2) }}
{{-- Footer --}}