@extends('layouts.app') @section('title','Pay for Your Booking — Rukay\'s') @section('content')

Complete Your Payment

Secure your appointment at Rukay's Hairdo & Beauty

{{-- Booking Summary --}}

Booking Summary

Ref{{ $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
Client{{ $booking->client_name }}
@if($booking->discount_amount > 0)
Discount−₵{{ number_format($booking->discount_amount,2) }}
@endif
Total Due ₵{{ number_format($booking->total_amount,2) }}
@if(session('error'))
{{ session('error') }}
@endif
{{-- Payment Options --}}
@csrf

Choose Payment Amount

{{-- Full Payment --}} {{-- Deposit (only if required & > 0) --}} @if($booking->deposit_amount > 0) @endif
Payment Method
🔒 You'll be redirected to Paystack's secure checkout where you can pay by Card or Mobile Money (MTN, Vodafone, AirtelTigo).
🔐 Secured by Paystack · SSL Encrypted · No card data stored
Cancel and return home
@push('scripts') @endpush @endsection