@extends('layouts.app') @section('title', 'تقرير أعمار الديون') @section('content')
تحليل المبالغ المستحقة للعملاء موزعة حسب فترات التأخير
| كود العميل | اسم العميل | إجمالي الرصيد | جارية | 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) }} | |