@extends('layouts.app', ['title' => 'التحصيل والذمم']) @section('content')
إجمالي الفواتير
{{ number_format((float)($totals->billed_amount ?? 0), 2) }}
المحصل
{{ number_format((float)($totals->paid_amount ?? 0), 2) }}
شيكات تحت التحصيل
{{ number_format((float)($totals->checks_under_collection ?? 0), 2) }}
الرصيد المتبقي
{{ number_format((float)($totals->closing_balance ?? 0), 2) }}
@forelse($collections as $row) @empty @endforelse
الشركة عدد العمليات إجمالي الفواتير المحصل شيكات تحت التحصيل الخصومات الرصيد النهائي
{{ $row->company_name }} {{ number_format((float)$row->total_transactions) }} {{ number_format((float)$row->billed_amount, 2) }} {{ number_format((float)$row->paid_amount, 2) }} {{ number_format((float)$row->checks_under_collection, 2) }} {{ number_format((float)$row->total_deductions, 2) }} {{ number_format((float)$row->closing_balance, 2) }}
لا توجد بيانات
@endsection