@extends('layouts.new-layout') @section('content')

Appointment Booked!

Your appointment has been received. Payment will be collected at the time of service.

@if($appointment)

Appointment ID: {{ $appointment->appointment_id }}

Name: {{ $appointment->name }}

Date: {{ \Carbon\Carbon::parse($appointment->date)->format('F d, Y') }}

Time: {{ \Carbon\Carbon::parse($appointment->time)->format('h:i A') }}

Amount Due: ${{ number_format($appointment->price, 2) }}

@endif

Questions? Contact us at info@mjvacservices.ca

Back to Home
@endsection