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

{{ $service->source_name }}

{{ $averageRating }} ({{ $ratingCount }} {{ __("reviews")}}))
{{ __('Bookings') }}
    @php $step = 1; // Start step number @endphp
  • {{ $step++ }}. {{ __("Location")}}
  • @if($staff_count_status !== 0)
  • {{ $step++ }}. {{ __("Staffs")}}
  • @endif @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 }}

{{ __("Select Location")}}
{{ __("Total")}} : {{ $branchesCount }}
@foreach ($branches as $branch)
img
{{ $branch->branch_name }}

{{ $branch->branch_address }}

{{ $branch->staff_count }} {{ intval($branch->staff_count) <= 1 ? 'Staff' : 'Staffs' }}

{{ $averageRating ?? '0.0' }}

@endforeach
@if($staff_count_status !== 0)
{{ __("select_staffs")}}
{{ __("Total")}}: 00
@endif @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 }}
{{ __("Additional Service")}}
{{ __("Location")}}
Location Image

{{ __("Staff")}}
{{ __("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")}}

{{ __("Location")}}

{{ __("Staff")}}

{{ __("Date")}}

{{ __("Time")}}

{{ __("Amount")}}
{{ $currecy_details->symbol }}{{ $service->source_price }}
{{ __("Payment Method")}}
{{ __("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(isset($paymentInfo['cod_status']) && $paymentInfo['cod_status'] == 1)
payment
@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 }}
@endsection