{{-- resources/views/emails/notifications/payment-confirmation.blade.php --}} @extends('email.layouts.main') @section('title', 'Payment Confirmation') @section('header_title', 'Payment Received!') @section('content')

Hello {{ $booking->user->name }},

We’ve received your payment for {{ $booking->service->name }}. Thank you!

Amount Paid: ${{ number_format($booking->payment->amount ?? 0, 2) }}
Payment Method: {{ $booking->payment->method ?? 'N/A' }}
Transaction ID: {{ $booking->payment->transaction_id ?? 'N/A' }}

A receipt has been attached for your records (if applicable). If you have any questions, please contact us at {{ $booking->company->email }}.

@endsection