{{ $booking->user->email ?? '--' }}
{{ $booking->user->mobile ? $booking->user->formatted_mobile : '--' }}
{{$booking->deal->location->name}}
{{$booking->deal_quantity}}
@if ($booking->date_time != '') {{ \Carbon\Carbon::parse($booking->date_time)->translatedFormat($settings->date_format) }} @endif
@if ($booking->date_time != '') {{ $booking->date_time->translatedFormat($settings->time_format) }} @endif
@foreach ($booking->users as $user) {{$user->name}} @endforeach
# | @lang('app.item') | @lang('app.unitPrice') | @lang('app.quantity') | @lang('app.amount') | |
---|---|---|---|---|---|
{{ $key+1 }}. | {{ ucwords($item->businessService->name) }} | {{ $settings->currency->currency_symbol.number_format((float)$item->unit_price, 2, '.', '') }} | x{{ $item->quantity }} | @if ($booking->deal_id!=''){{ $settings->currency->currency_symbol.number_format((float)($item->unit_price * $item->quantity), 2, '.', '')}} x {{$booking->deal_quantity}} = {{ $settings->currency->currency_symbol.number_format((float)($item->unit_price * $item->quantity * $booking->deal_quantity), 2, '.', '')}} | @else{{ $settings->currency->currency_symbol.number_format((float)($item->businessService->discounted_price * $item->quantity), 2, '.', '')}} | @endif
@lang('modules.booking.paymentMethod') | {{ $booking->payment_gateway }} |
@lang('modules.booking.paymentStatus') | @if($booking->payment_status == 'completed') {{ __('app.'.$booking->payment_status) }} | @endif @if($booking->payment_status == 'pending') {{ __('app.'.$booking->payment_status) }} @endif
@lang('front.paymentMethod')
@if($credentials->stripe_status == 'active')
@lang('front.buttons.stripe')
@endif
@if($credentials->paypal_status == 'active')
@lang('front.buttons.paypal')
@endif
@if($credentials->razorpay_status == 'active')
@lang('front.buttons.razorpay')
@endif
@if($credentials->offline_payment == 1)
@lang('app.offline')
@endif
|
|
@lang('app.download') @lang('app.receipt') |
@lang('app.subTotal') | {{ $settings->currency->currency_symbol.number_format((float)$booking->original_amount, 2, '.', '') }} |
@lang('app.discount') | {{ $settings->currency->currency_symbol.number_format((float)$booking->discount, 2, '.', '') }} |
{{ $booking->tax_name.' ('.$booking->tax_percent.'%)' }} | {{ $settings->currency->currency_symbol.number_format((float)$booking->tax_amount, 2, '.', '') }} |
@lang('app.couponDiscount') ({{ $booking->coupon->title}}) | {{ $settings->currency->currency_symbol.number_format((float)$booking->coupon_discount, 2, '.', '') }} |
@lang('app.total') | {{ $settings->currency->currency_symbol.number_format((float)$booking->amount_to_pay, 2, '.', '') }} |
{!! $booking->additional_notes !!}