@extends('layouts.app') @section('title', 'دفتر الأستاذ') @section('page_title', 'تقرير كشف حساب (دفتر الأستاذ العام)') @section('content')
كود الحساب: {{ $selectedAccount->code }} | الفترة من {{ $fromDate }} إلى {{ $toDate }}
| تاريخ المعاملة | رقم القيد | بيان المعاملة | مدين (+) | دائن (-) | الرصيد التراكمي |
|---|---|---|---|---|---|
| رصيد أول المدة الافتتاحي للتقرير | - | - | {{ number_format($openingBalance, 2) }} ر.س | ||
| {{ $line->journalEntry->entry_date->format('Y-m-d') }} | {{ $line->journalEntry->entry_number }} | {{ $line->description ?? $line->journalEntry->description }} | {{ $debit > 0 ? number_format($debit, 2) : '-' }} | {{ $credit > 0 ? number_format($credit, 2) : '-' }} | {{ number_format($runningBalance, 2) }} ر.س |
| لا توجد حركات مسجلة خلال هذه الفترة. | |||||