@extends('admin.layouts.master') @section('title', 'كشف حساب') @section('content')
تصفية حسب حساب أو عميل أو مورد خلال فترة زمنية.
| التاريخ | رقم القيد | الحساب | الوصف | مدين | دائن |
|---|---|---|---|---|---|
| {{ optional($line->journalEntry?->entry_date)->format('Y-m-d') ?? $line->journalEntry?->entry_date }} | {{ $line->journalEntry?->entry_number }} | {{ $line->account?->account_number }} - {{ $line->account?->name }} | {{ $line->journalEntry?->description ?: ($line->memo ?: '—') }} | {{ number_format((float) $line->debit, 2) }} | {{ number_format((float) $line->credit, 2) }} |
| لا توجد حركات خلال الفترة المحددة | |||||
| الإجمالي | {{ number_format((float) $report['total_debit'], 2) }} | {{ number_format((float) $report['total_credit'], 2) }} | |||
| الصافي | {{ number_format((float) $report['net'], 2) }} | ||||