Invoice No: Booking{{$data['id']}}
{{$data['user_name']}}
{{$data['email']}}
{{$data['mobile']}}
{{$data['venue_address']}}
Branch name: {{ $data['branch_name'] }}
Contact number: {{ $data['branch_number'] }}
Booking Date:
{{$data['booking_date']}}
Payment Method:
{{ $data['transaction_type'] === 'upi' ? 'UPI' : ucwords($data['transaction_type']) }}
| Item Name | Quantity | Unit Price | Total |
|---|---|---|---|
| {{$value['service_name']}} | 1 | {{ \Currency::format($value['service_price']) }} | {{ \Currency::format($value['service_price']) }} |
| {{$value['product_name']}} | {{$value['product_qty']}} | @php $price = $value['discounted_price'] != $value['product_price'] ? $value['discounted_price'] : $value['product_price']; $productPrice += $price * $value['product_qty']; @endphp{{ \Currency::format($price) }} | {{ \Currency::format($price * $value['product_qty']) }} |
| {{$value['name']}} | 1 | {{ \Currency::format($value['package_price']) }} | {{ \Currency::format($value['package_price']) }} |
| Sub Total: | {{ \Currency::format($data['serviceAmount'] + $data['product_price'] + $data['package_price']) }} | ||
| Tips: | {{ \Currency::format($data['tip_amount']) }} | ||
| TAX: | {{ \Currency::format($data['tax_amount']) }} | ||
| Coupon Discount: | {{ \Currency::format($data['coupon_discount']) }} | ||
| Grand Total: | {{ \Currency::format($data['grand_total']) }} | ||
{{ setting('spacial_note') }}