@extends('layouts.app') @section('title','Book an Appointment — Rukay\'s') @section('content')

Book Your Appointment

Select your service, choose a time, and confirm your booking in minutes.

1
Service
2
Time
3
Details
4
Review
@csrf

Select a Service

@foreach($services as $s)

{{ $s->name }}

₵{{ number_format($s->price,2) }}
{{ $s->duration_minutes }} min · {{ $s->category }}
@endforeach

Choose Date & Time

Your Details

Review Your Booking

@if($errors->any())
{{ $errors->first() }}
@endif
@push('scripts') @endpush @endsection