{{-- resources/views/emails/notifications/appointment-reschedule.blade.php --}} @extends('email.layouts.main') @section('title', 'Appointment Rescheduled') @section('header_title', 'Your Appointment Has Been Rescheduled') @section('content')
Hello {{ $booking->user->name }},
Your appointment has been successfully rescheduled. The new date and time are as follows:
Old Date & Time: |
{{ date('F d, Y', strtotime($oldBooking->date ?? '')) }} {{ date('h:i A', strtotime($oldBooking->start_time ?? '')) }} - {{ date('h:i A', strtotime($oldBooking->end_time ?? '')) }} |
New Date & Time: |
{{ date('F d, Y', strtotime($booking->date)) }} {{ date('h:i A', strtotime($booking->start_time)) }} - {{ date('h:i A', strtotime($booking->end_time)) }} |
Location: | {{ $booking->company->address }} |
If this change doesn’t work for you, please reach out or adjust your appointment again. Thank you for choosing {{ $booking->company->name }}!
@endsection