{{ __('إنشاء فاتورة إلكترونية جديدة') }}

@if (session('error')) @endif
@csrf

اختر فاتورة عميل لتحويلها إلى فاتورة إلكترونية

@if ($customerInvoices->isEmpty()) @else
@foreach ($customerInvoices as $invoice) @endforeach
اختيار رقم الفاتورة تاريخ الفاتورة العميل المبلغ الإجمالي
{{ $invoice->invoice_number }} {{ $invoice->invoice_date->format('Y-m-d') }} {{ $invoice->customer->name }} {{ number_format($invoice->total_amount, 2) }} ريال
@endif