@php $brand = config('brand.name'); $colors = config('brand.colors'); $title = 'Secure Payment Request'; $subject = $subject ?? "Your {$brand} payment link for {$reference}"; $preheader = "Complete payment for reservation {$reference}."; @endphp

{{ $title }}

Hi {{ $job->customer_name ?? 'there' }},

Please complete payment for reservation {{ $reference }} to secure your booking.

@include('emails.partials.button', [ 'url' => $payUrl, 'label' => 'Pay now', 'bg' => $colors['primary'] ?? '#16a34a', ])

Reservation Summary

@if($job->customer_name) @endif @if($job->customer_email) @endif @if($job->customer_phone) @endif @if($job->start_at) @endif @if($job->end_at) @endif @if(!empty($note))

{{ $note }}

@endif