طباعة سجل القروض

الاسم: {{ $employee->name }}

الرقم الوظيفي: {{ $employee->employee_id }}

التاريخ: {{ now()->translatedFormat('d F Y') }}

@if($loans && count($loans) > 0) @foreach($loans as $loan) @endforeach
# المبلغ نوع القرض الفائدة عدد الأقساط قيمة القسط الحالة
{{ $loan->id }} {{ number_format($loan->amount, 2) }} {{ get_currency_code() }} {{ $loan->loan_type ?? 'غير محدد' }} {{ $loan->interest_rate ?? 0 }}% {{ $loan->installment_count ?? 0 }} {{ number_format($loan->installment_amount, 2) }} {{ get_currency_code() }} @switch($loan->status) @case('pending') معلق @break @case('approved') موافق عليه @break @case('active') نشط @break @case('paid') مدفوع @break @default {{ $loan->status }} @endswitch
@else

لا توجد قروض مسجلة.

@endif