@extends('layouts.app') @section('title', 'تقرير التحصيلات') @section('breadcrumb') @endsection @section('content') @include('reports._filter')
التحصيل حسب طريقة الدفع
@forelse ($byMethod as $row) @empty @endforelse
الطريقةعدد السنداتالإجمالي
{{ $row['label'] }} {{ $row['count'] }} {{ currency($row['total']) }}
لا توجد بيانات
الفواتير المستحقة ({{ $receivables->count() }})
@forelse ($receivables as $invoice) @empty @endforelse
الفاتورةالعميلالتاريخالاستحقاقالإجماليالمتبقيالحالة
{{ $invoice->code }} {{ $invoice->customer?->display_name ?? '—' }} {{ arabicDate($invoice->date) }} {{ arabicDate($invoice->due_date) }} {{ currency($invoice->total) }} {{ currency($invoice->remaining) }} {!! badge($invoice->status_label, $invoice->status_color) !!}
لا توجد مديونيات — ممتاز!
سندات القبض ({{ $payments->count() }})
@forelse ($payments as $payment) @empty @endforelse
السندالتاريخالعميلالفاتورةالمبلغالطريقةالمستخدم
{{ $payment->code }} {{ arabicDate($payment->date) }} {{ $payment->customer?->display_name ?? '—' }} {{ $payment->invoice?->code ?? '—' }} {{ currency($payment->amount) }} {{ $payment->method_label }} {{ $payment->creator?->name ?? '—' }}
لا توجد تحصيلات في هذه الفترة
@endsection