Invoice

Invoice No:ORDER{{$data['id']}}

Customer Info

{{$data['user_name']}}

{{$data['email']}}

{{$data['mobile']}}

Billing Address

{{$data['venue_address']}}

Order Date:

{{$data['booking_date']}}

Payment Method:

{{$data['transaction_type']}}

@foreach($data['extra']['services'] as $key => $value) @endforeach @php $productPrice = 0; @endphp @foreach($data['extra']['products'] as $key => $value) @php $price = $value['product_price']; $delPrice = false; $discountType = $value['discount_type']; $discountValue = $value['discount_value'] . ($discountType == 'percent' ? '%' : ''); if($price != $value['discounted_price']) { $delPrice = $price; $price = $value['discounted_price']; } $productPrice = $price * $value['product_qty'] +$productPrice @endphp @endforeach
Item Name Quantity Unit Price Total
{{$value['service_name']}} 1 {{$value['service_price']}} {{$value['service_price']}}
{{$value['product_name']}} {{$value['product_qty']}}{{$price}} {{ $price * $value['product_qty'] }}
Sub Total: {{ \Currency::format($data['serviceAmount'] + $data['product_price']) }}
Tips: {{ \Currency::format($data['tip_amount']) }}
TAX: {{ \Currency::format($data['tax_amount']) }}
Grand Total: {{ \Currency::format($data['grand_total']) }}

{{ setting('spacial_note') }}