@extends('emails.layout') @section('title', 'تأكيد استلام الدفعة — ' . $ref) @section('content') @php $methodLabel = match($method) { 'instapay' => 'انستاباي', 'visa' => 'بطاقة Visa', default => 'نقدي', }; @endphp

@if($type === 'refund') تم تسجيل الاسترداد! @else تم تسجيل دفعتك! @endif

مرحباً {{ $userName }}، @if($type === 'refund') تم تسجيل استرداد لحجز @else تم تسجيل دفعتك لحجز @endif {{ $facility }} بنجاح.

@if($type === 'refund') @else @endif @if($balanceDue > 0) @else @endif
رقم الحجز{{ $ref }}
المرفق{{ $facility }}
طريقة الدفع{{ $methodLabel }}
مبلغ الاسترداد{{ number_format($amountPaid, 2) }} جنيه
المبلغ المسدَّد{{ number_format($amountPaid, 2) }} جنيه
المبلغ المتبقي{{ number_format($balanceDue, 2) }} جنيه
حالة الدفعمدفوع بالكامل ✓
@if($type === 'refund') @if($method === 'visa')
تم استرداد المبلغ إلى بطاقة Visa الخاصة بك. قد يستغرق ظهوره في حسابك 3–5 أيام عمل.
@else
تم تسجيل استرداد بمبلغ {{ number_format($amountPaid, 2) }} جنيه.
@endif @elseif($balanceDue > 0)
لا يزال هناك مبلغ متبقٍ قدره {{ number_format($balanceDue, 2) }} جنيه.
@else
تم سداد كامل مبلغ الحجز. شكراً لك!
@endif @if($portalUrl)

عرض تفاصيل الحجز

@endif @endsection