Company Name | {{ $order->company_name }} |
Customer Name | {{ $order->customer_name }} |
Sales person | {{ $order->salesperson->name }} |
Phone | {{ $order->salecustomer->phone }} |
{{ $order->salecustomer->email }} | |
Shipping Address | {{ $order->billing_address }} |
Order Date | {{ $order->created_at->format('Y-m-d H:i:s A') }} |
Order Status | {{ $order->status }} |
Sl | images | Product Name | SKU | Quantity | Weight | Retail Price | New Price | Discount | Tax | Selling Price |
---|---|---|---|---|---|---|---|---|---|---|
{{ $key + 1 }} |
@if (count($item->saleproduct->images))
![]() |
{{ $item->name }} | {{ $item->sku }} | {{ $item->quantity }} | {{ $item->saleproduct->weight }} | ${{ number_format($item->price ?? 0, 2) }} | {{ number_format($item->price - $item->discount, 2) }} | {{ number_format($item->tax_amount, 2) }} | ${{ number_format($item->total_amount ?? 0, 2) }} |
Subtotal | - | ${{ number_format($order->total_amount ?? 0, 2) }} |
Tax | - | ${{ number_format($order->tax ?? 0, 2) }} |
Discount | - | ${{ number_format($order->discount_amount ?? 0, 2) }} |
Delivery Charge | - | ${{ number_format($order->delivery_charge ?? 0, 2) }} |
Grand Total | - | ${{ number_format($order->grand_total ?? 0, 2) }} |