@extends('layouts.app') @section('content')
الاسم: {{ $invoice->student->fname }} {{ $invoice->student->lname }}
الصف: {{ $invoice->student->grade }}
| المبلغ الإجمالي | {{ number_format($invoice->total_amount, 2) }} $ |
|---|---|
| المبلغ المدفوع | {{ number_format($invoice->paid_amount, 2) }} $ |
| المبلغ المتبقي | {{ number_format($invoice->remaining_amount, 2) }} $ |
| الحالة | {{ $invoice->status == 'paid' ? 'مدفوعة' : ($invoice->status == 'partial' ? 'جزئية' : 'pending') }} |
| تاريخ الدفع | العملة | المبلغ | المبلغ بالدولار | طريقة الدفع | الإجراءات |
|---|---|---|---|---|---|
| {{ $payment->payment_date }} | {{ $payment->currency }} | {{ number_format($payment->amount, 2) }} {{ $payment->currency }} | {{ number_format($payment->amount_usd, 2) }} $ | {{ $payment->method ?? 'غير محدد' }} |
لا توجد دفعات مسجلة لهذه الفاتورة
@endif