{{-- resources/views/emails/notifications/appointment-reminder.blade.php --}} @extends('email.layouts.main') @section('title', 'Appointment Reminder') @section('header_title', 'Friendly Reminder') @section('content')
Hello {{ $booking->user->name }},
This is a friendly reminder for your upcoming appointment with {{ $booking->company->name }}. Here are the details:
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 }} |
We look forward to seeing you soon. If you need to reschedule or have questions, just let us know!
@endsection