INV Number :
{{ $order->id }}
Page No. :
1
Customer Name :
{{ $order->shop->name }}
Customer Phone Number :
{{ $order->shop->phone }}
Address :
{{ $order->shop->address }}
Cust. Code :
BVH-{{ $order->shop->id }}
Booked By :
{{ $order->employee->name }}
INV. Date/Time :
{{ $order->created_at }}
PAYMENT TERMS
Cash
Delivery Date :
{{ $order->delivery_date }}
Total # Of Items : {{ count($order->products) }} |
Grand Total : {{ DB::table('order_products')->where('order_id',$order->id)->sum(DB::raw('price * quantity')) }} |
Discount Total : {{ DB::table('order_products')->where('order_id',$order->id)->sum(DB::raw('discount * quantity')) }} |
Net Total : {{ _orderConditions($order) }} |
GST Total : {{ DB::table('order_products')->where('order_id',$order->id)->sum(DB::raw('sale_tax * quantity')) }}