@extends('layouts.app') @section('content')

🧾 قائمة الفواتير

➕ إنشاء فاتورة جديدة
📋 تفاصيل الفواتير
@forelse ($invoices as $invoice) @empty @endforelse
# رقم الفاتورة اسم الطالب العملة المبلغ الإجمالي المبلغ المدفوع الحالة الإجراءات
{{ $loop->iteration }} {{ $invoice->invoice_no }} {{ $invoice->student->full_name ?? 'غير معروف' }} {{ $invoice->currency ?? 'USD' }} {{ number_format($invoice->total_amount, 2) }} {{ $invoice->currency }} {{ number_format($invoice->paid_amount, 2) }} {{ $invoice->currency }} @if($invoice->status == 'paid') ✅ مدفوعة بالكامل @elseif($invoice->status == 'partial') ⚠️ مدفوعة جزئياً @else ❌ غير مدفوعة @endif
👁️ عرض 💳 الدفعات ✏️ تعديل
@csrf @method('DELETE')
لا توجد فواتير مسجلة حالياً.
@endsection