@extends('layouts.web') @section('content')

Book an Appointment

Home> Book an Appointment
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('failed'))
{{ session('failed') }}
@endif @if (session('success'))
{{ session('success') }}
@endif
@csrf

First Appointment

@foreach($categories as $key=>$category) @foreach($category->services as $service)

{{ $category->name }}

{{ $service->name }}{{ isset($service->time) ? $service->time->label : '1h' }}

{!! substr($service->description,0,100).'...' !!}

{!! ($service->price==0) ? 'Free' : '$'.number_format($service->price, 2) !!}


See Available Dates
id) ? 'checked' : '' !!}>
@endforeach @endforeach

Fill Information

@php $no_of_guests=''; @endphp @if( old('no_of_guests')) @php $no_of_guests=old('no_of_guests'); @endphp @endif
@php $first_try_bridal_dress=''; @endphp @if( old('first_try_bridal_dress')) @php $first_try_bridal_dress=old('first_try_bridal_dress'); @endphp @endif
@php $size_in_womenswear=''; $sizes=[6,8,10,12,14,16,18,20,22,24] @endphp @if( old('size_in_womenswear')) @php $size_in_womenswear=old('size_in_womenswear'); @endphp @endif

Follow-up Appointment

@csrf
@php $first_name=''; @endphp @if( old('first_name')) @php $first_name=old('first_name'); @endphp @endif
@php $last_name=''; @endphp @if( old('last_name')) @php $last_name=old('last_name'); @endphp @endif
@php $email=''; @endphp @if( old('email')) @php $email=old('email'); @endphp @endif
@php $phone=''; @endphp @if( old('phone')) @php $phone=old('phone'); @endphp @endif
@php $wedding_date=date('Y-m-d'); @endphp @if( old('wedding_date')) @php $wedding_date=old('wedding_date'); @endphp @endif
@php $appointment_date=date('Y-m-d'); @endphp @if( old('appointment_date')) @php $appointment_date=old('appointment_date'); @endphp @endif
@php $slot_id=0; @endphp @if( old('slot_id')) @php $slot_id=old('slot_id'); @endphp @endif
@php $previous_date=date('Y-m-d'); @endphp @if( old('previous_date')) @php $previous_date=old('previous_date'); @endphp @endif
@php $previous_quote_number=''; @endphp @if( old('previous_quote_number')) @php $previous_quote_number=old('previous_quote_number'); @endphp @endif
@php $no_of_guests=''; @endphp @if( old('no_of_guests')) @php $no_of_guests=old('no_of_guests'); @endphp @endif
@endsection @push('scripts')