Back To Order

{{ $generalsettings?->address }}
{{ $generalsettings?->phone }}
{{ $generalsettings?->email }}

Customer: {{ $sale->customer?->name }}
Country : {{ $sale->customer?->country }} / City: {{ $sale->customer?->city }}
Address: {{ $sale->customer?->address }} / State: {{ $sale->customer?->state }}
Phone No: {{ $sale->customer?->phone_number }}
Pick Date: {{ Carbon\Carbon::parse($sale->created_at)->format('M d, Y') }}
Order ID: {{ $sale->reference_no }}

@foreach ($sale->productSales as $product) @endforeach

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

{{ $product->qty }} x {{ numberFormat($product->net_unit_price) }} - [Discount:{{ $product->discount }}] + [{{ $product->qty }} x Tax:{{ $product->tax }}]
{{ numberFormat($product->total) }}
Total PCs: {{ $sale->total_qty }} Paid By: {{ $sale->payment_method }} Discount: {{ numberFormat($sale->coupon_discount) }} Total: {{ numberFormat($sale->grand_total) }}
Thank you for choosing {{ $generalsettings?->site_title }}