@use('app\Helpers\Helpers') @php $currency = Helpers::getDefaultCurrency()?->symbol; @endphp
{{ __('static.booking.order_id_title') }}{{$booking->booking_number}}
{{ __('static.booking.order_date_title') }}{{$booking->created_at->format("d/m/Y")}}
{{ __('static.booking.payment_method_title') }}{{$booking->payment_method}}
{{ __('static.booking.customer_address') }} |
---|
{{$booking->consumer->getPrimaryAddressAttribute()?->area}} {{$booking->consumer->getPrimaryAddressAttribute()?->postal_code}}, {{$booking->consumer->getPrimaryAddressAttribute()?->city}}, {{$booking->consumer?->getPrimaryAddressAttribute()?->state?->name}}, {{$booking->consumer?->getPrimaryAddressAttribute()?->country?->name}} Contact: ({{$booking->consumer?->code}}) {{$booking->consumer?->phone}} Customer Name: {{$booking->consumer?->name}} |
{{ __('static.booking.invoice_no') }} | {{ __('static.booking.invoice_service_name') }} | {{ __('static.booking.invoice_price') }} | {{ __('static.booking.invoice_per_serviceman_charge') }} | @if ($booking->extra_charges->isNotEmpty()){{ __('static.booking.invoice_extra_charge') }} | @endif{{ __('static.booking.invoice_platform_fees') }} | {{ __('static.booking.invoice_subtotal') }} | {{ __('static.booking.invoice_grand_total') }} |
---|---|---|---|---|---|---|---|
1 | {{$booking->service->title}} | {{$booking->service_price}} | {{$booking->per_serviceman_charge}} | @if ($booking->extra_charges->isNotEmpty()){{$booking->extra_charges->sum('total')}} | @endif{{$booking->platform_fees}} | {{$booking->subtotal}} | {{$booking->subtotal + $booking->tax}} |
{{ __('static.booking.invoice_sub_total') }} {{ __('static.booking.invoice_tax') }} {{ __('static.booking.invoice_shipping') }} {{ __('static.booking.invoice_total_payable') }} {{ $currency }}{{$booking->subtotal}} {{ $currency }}{{$booking->tax}} {{ $currency }}{{$booking->platform_fees}} {{ $currency }}{{$booking->total}} |