관리-도구
편집 파일: booking_confirmation.blade.php
<!-- resources/views/emails/booking_confirmation.blade.php --> <h1>Booking Confirmation</h1> <p>Dear {{ $contact->name }},</p> <p>Thank you for your booking. Here are the details:</p> <ul> <li>Name: {{ $contact->name }}</li> <li>Email: {{ $contact->email }}</li> <li>Phone: {{ $contact->phone }}</li> <li>Booking Date: {{ $contact->date }}</li> <li>Course: {{ $contact->course }}</li> </ul> <p>We will contact you shortly.</p>