ESTIMATE

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 }}
@foreach ($order->products as $product) @endforeach
Quantity Sales|Bonus Item Description Pack Size Batch Nos. Price MRP Total Price Discount% Regular|Special Discount Amount GST % GST Net Amount
{{ $product->pivot->quantity }} | {{ $product->pivot->bonus }} {{ $product->name }} {{ $product->size }} {{ $product->unit_price }} {{ $product->mrp }} {{ $product->unit_price * $product->pivot->quantity }} {{ $product->discount_percentage }}% {{ $product->pivot->discount * $product->pivot->quantity }} {{ $product->tax_percentage }} {{ $product->pivot->sale_tax * $product->pivot->quantity }} {{ ($product->unit_price * $product->pivot->quantity) - ($product->pivot->discount * $product->pivot->quantity) + ($product->pivot->sale_tax * $product->pivot->quantity) }}
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')) }}
Net Total : {{ _orderConditions($order) }}