@extends('layouts.app') @section('title','Payment Successful — Rukay\'s') @section('content')

Payment Successful!

@if($booking->payment_status === 'deposit_paid')

Your deposit has been received. Your appointment is confirmed!

@else

Full payment received. Your appointment is confirmed!

@endif
Booking Reference
{{ $booking->reference_code }}
Service{{ $booking->service_name }}
Date{{ \Carbon\Carbon::parse($booking->appointment_date)->format('D, M j, Y') }}
Time{{ $booking->appointment_time }}
@if($booking->staff_name)
Stylist{{ $booking->staff_name }}
@endif
Status Confirmed ✓
@if($payment)
Amount Paid₵{{ number_format($payment->amount,2) }}
@if($booking->payment_status === 'deposit_paid')
Balance Due on Day ₵{{ number_format($booking->total_amount - $booking->amount_paid,2) }}
@endif @if($payment->channel && $payment->channel !== 'demo')
Payment Via{{ ucfirst(str_replace('_',' ',$payment->channel)) }}
@endif
Transaction Ref{{ $payment->transaction_ref }}
@endif @if(isset($settings['whatsapp_number']) && $settings['whatsapp_number'])
Questions? Chat with us on WhatsApp
@endif
A confirmation has been sent to {{ $booking->client_email }}
@endsection