{{ $booking->user->email ?? '--' }}
{{ $booking->user->mobile ? $booking->user->formatted_mobile : '--' }}
{{ $booking->date_time->format($settings->date_format) }}
{{ $booking->date_time->format($settings->time_format) }}
{{ $booking->employee->name }}
| # | @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 }} | {{ $settings->currency->currency_symbol.number_format((float)($item->businessService->discounted_price * $item->quantity), 2, '.', '')}} |
| @lang('modules.booking.paymentMethod') | {{ $booking->payment_gateway }} |
| @lang('modules.booking.paymentStatus') | @if($booking->payment_status == 'completed') {{ ucfirst($booking->payment_status) }} | @endif @if($booking->payment_status == 'pending') {{ ucfirst($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.total') | {{ $settings->currency->currency_symbol.number_format((float)$booking->amount_to_pay, 2, '.', '') }} |
{!! $booking->additional_notes !!}