@extends('front') @section('content')
{{ __('Service Details') }}
img

{{ $service->source_name }}

{{ $averageRating }} ({{ $ratingCount }} {{ __('reviews') }})
{{ __('Bookings') }}
@php $step = 1; // Start step number @endphp
    @if ($additionalServicesCount !== '00')
  • {{ $step++ }}. {{ __('Additional Services') }}
  • @endif
  • {{ $step++ }}. {{ __('Date & Time') }}
  • {{ $step++ }}. {{ __('Personal Information') }}
  • {{ $step++ }}. {{ __('Cart') }}
  • {{ $step++ }}. {{ __('Payment') }}
  • {{ $step }}. {{ __('Confirmation') }}
{{ __('Bookings') }}

0% complete

@if ( !empty(Auth::user()->userDetails->profile_image) && file_exists(public_path('storage/profile/' . Auth::user()->userDetails->profile_image))) user @else Default Profile Image @endif

{{ Auth::user()->userDetails->first_name }} {{ Auth::user()->userDetails->last_name }}

@if ($additionalServicesCount !== '00')
{{ __('Select Additional Service') }}
{{ __('Total') }} : {{ $additionalServicesCount }}
@if ($additionalServices->isEmpty())

No additional services found at the moment. You can Continue further.

@else @foreach ($additionalServices as $additionalService)
img
{{ $additionalService->name }}

{{ $currecy_details->symbol }}{{ $additionalService->price }} / {{ $additionalService->duration }}

@endforeach @endif
@endif
{{ __('Select Date & Time') }}
{{ __('Select date') }}
{{ __('Select time') }}

{{ __('No slots available at this moment') }}

{{ __('Add Personal Information') }}
{{ $service->source_name }}

{{ __('Price Type') }}: {{ \Illuminate\Support\Str::ucfirst($service->price_type) }}

{{ __('Duration') }}: {{ $service->duration }}/{{ $serviceDuration }}

{{ $currecy_details->symbol }}{{ $service->source_price }}
{{ __('Date') }}

{{ __('Time') }}

{{ __('Cancellation policy') }}

{{ __('Cancel for free anytime in advance, otherwise you will be charged 100% of the service price for not showing up.') }}

{{ __('Cart') }}
img
{{ $service->source_name }}

{{ __('Price Type') }}: {{ \Illuminate\Support\Str::ucfirst($service->price_type) }}

{{ __('Duration') }}: {{ $service->duration }}/{{ $serviceDuration }}

{{ __('Additional Service') }}

{{ __('Date') }}

{{ __('Time') }}

{{ __('Amount') }}
{{ $currecy_details->symbol }}{{ $service->source_price }}
{{ __('Payment Method') }}
{{-- Add style for max-height and overflow here --}}
{{ __('Payment Types') }}
@if (isset($paymentInfo['stripe_status']) && $paymentInfo['stripe_status'] == 1)
payment
@endif @if (isset($paymentInfo['paypal_status']) && $paymentInfo['paypal_status'] == 1)
payment
@endif @if (isset($paymentInfo['mollie_status']) && $paymentInfo['mollie_status'] == 1)
payment
@endif @if (module_view_exists('paymentgateway::index') && $PaymentGatewayStatus == 1) @include('paymentgateway::index') @endif @if (isset($paymentInfo['cod_status']) && $paymentInfo['cod_status'] == 1)
payment
@endif @if ($bankStatus == 1)
bank
@endif @if (isset($paymentInfo['wallet_status']) && $paymentInfo['wallet_status'] == 1)
payment
@endif
{{ $service->source_name }}

{{ __('Price Type') }}: {{ \Illuminate\Support\Str::ucfirst($service->price_type) }}

{{ __('Duration') }}: {{ $service->duration }}/{{ $serviceDuration }}

{{ $currecy_details->symbol }}{{ $service->source_price }}
@if ($couponModuleStatus === 1 && View::exists('coupon::booking.coupon')) @include('coupon::booking.coupon') @endif
{{ __('Payment Method') }}
{{ __('your_booking_is_successful_on') }}
img
{{ $service->source_name }}
{{ __('confirmed') }}
{{ $service->source_name }}

{{ __('Price Type') }}: {{ \Illuminate\Support\Str::ucfirst($service->price_type) }}

{{ __('Duration') }}: {{ $service->duration }}/{{ $serviceDuration }}

{{ $currecy_details->symbol }}{{ $service->source_price }}
{{ __('sub_total') }}

{{ $currecy_details->symbol }}

{{ __('tax') }}

{{ $currecy_details->symbol }}

{{ __('total') }}
{{ $currecy_details->symbol }}
@if (module_view_exists('paymentgateway::model') && $PaymentGatewayStatus == 1) @include('paymentgateway::model') @endif
@endsection