@extends('layouts.app') @section('title', 'تقرير أعمار الديون') @section('content')

🗓️ تقرير أعمار الديون

تحليل المبالغ المستحقة للعملاء موزعة حسب فترات التأخير

العودة

🔍 الفلاتر

إجمالي المديونية
{{ number_format($data['summary']['total_balance'], 2) }}
جارية (لم تستحق)
{{ number_format($data['summary']['total_current'], 2) }}
1 - 30 يوم
{{ number_format($data['summary']['total_1_30'], 2) }}
31 - 60 يوم
{{ number_format($data['summary']['total_31_60'], 2) }}
61 - 90 يوم
{{ number_format($data['summary']['total_61_90'], 2) }}
أكثر من 90 يوم
{{ number_format($data['summary']['total_over_90'], 2) }}
@forelse($data['customers'] as $customer) @empty @endforelse
كود العميل اسم العميل إجمالي الرصيد جارية 1 - 30 31 - 60 61 - 90 أكثر من 90
{{ $customer['customer_code'] }} {{ $customer['customer_name'] }} {{ number_format($customer['total_balance'], 2) }} {{ number_format($customer['current'], 2) }} {{ number_format($customer['1_30'], 2) }} {{ number_format($customer['31_60'], 2) }} {{ number_format($customer['61_90'], 2) }} {{ number_format($customer['over_90'], 2) }}

لا توجد مديونيات مستحقة

الإجماليات {{ number_format($data['summary']['total_balance'], 2) }} {{ number_format($data['summary']['total_current'], 2) }} {{ number_format($data['summary']['total_1_30'], 2) }} {{ number_format($data['summary']['total_31_60'], 2) }} {{ number_format($data['summary']['total_61_90'], 2) }} {{ number_format($data['summary']['total_over_90'], 2) }}
@endsection