@extends('layouts.header') @section('content')
@include('layouts.navbar')
back Back to Category

Select Your Services

Select any number of services you'd like to schedule, then click "Find Availability" to see openings.

@if(isset($services) && !empty($services)) @foreach($services as $key=>$services)

Add-ons

@foreach($services as $key1=>$value) @php $is_custom_svc = isset($value['is_custom_service']) && $value['is_custom_service'] == 1; $main_stype_id = isset($value['main_session_type_id']) ? $value['main_session_type_id'] : ''; // Determine checked state if($is_custom_svc){ $is_checked = in_array((string)$value['session_type_id'], $cart_bundle_original_ids ?? []); } else { $is_checked = in_array($value['session_type_id'], $cart_regular_ids ?? $cart_services_ids); } @endphp
@endforeach
@endforeach @endif

Services Selected

@php $all_session_ids ="" @endphp @php $all_sessionids=[] @endphp @if($cart_services) @foreach($cart_services as $key=>$val) @php $val_cpeel = isset($val['custom_peel']) ? $val['custom_peel'] : 0; $val_origid = isset($val['original_custom_service_id']) ? $val['original_custom_service_id'] : ''; $price = round($price + ($val['price'] ?? $val['non_member_price']), 2); $all_session_ids .=$val['id'].","; if($val['type']=="service"){ $all_sessionids[]=$val['id']; } @endphp @endforeach @else

There are currently no services selected.

@endif
@php $dis= (($cart_services)) ? "": "disabled=disabled"; $price_show = (($cart_services)) ? "style=display:flex": ""; @endphp
@endsection @section('customJs') @endsection