@extends('layouts.public-booking', ['title' => 'Booking Summary - Booklio']) @include('public.booking.partials.data') @section('content')
@include('public.booking.partials.steps', ['current' => 5])
@foreach ([['Service', $selected['service']], ['Staff', $selected['staff']], ['Date & time', $selected['date'] . ' at ' . $selected['time']], ['Customer', $selected['customer']], ['Total', $selected['price']]] as $row)
{{ $row[0] }} {{ $row[1] }}
@endforeach
@csrf Confirm booking
@include('public.booking.partials.summary-card')
@endsection