Invoice

Invoice to :

{{ $item->first_name }} {{ $item->last_name }} Invoice ID: #{{ $item->invoice_no}}
{{ $item->shipping_address }} Date {{ dateFormate($item->date)}}
{{ $item->mobile }}
@php $total = 0; @endphp @foreach($item->details as $key=>$product) @php $row_total = $product->product->sell_price * $product->quantity; $total += $row_total; @endphp @endforeach
SL. Item Description Color Size Price Qty. Total
{{ $key+1}} {{ $product->product->name}} {{ $product->productsize?$product->productsize->title:''}} {{ $product->variations }} {{ $product->product->sell_price }} {{ $product->quantity}}{{ priceFormate($row_total)}}
{{ $product->order->note }}
Sub Total :
Discount :
Delivery Charge :
{{ priceFormate($total)}}
{{ priceFormate($item->discount)}}
{{ ($item->delivery_charge_id == 0) ? '0' : priceFormate($item->delivery_charge->amount)}}

Total:

@php $grand_total=$total-$item->discount+$item->delivery_charge->amount; @endphp {{ priceFormate($grand_total)}}