@extends('admin.layouts.master') @section('title', 'ميزان المراجعة') @section('content')
من {{ \Carbon\Carbon::parse($fromDate)->format('Y/m/d') }} إلى {{ \Carbon\Carbon::parse($toDate)->format('Y/m/d') }}
| رقم الحساب | اسم الحساب | نوع الحساب | مدين | دائن |
|---|---|---|---|---|
| {{ $account->account_number }} | {{ $account->name }} | {{ $account->type_name }} | @if($account->normal_side === 'debit') {{ number_format((float)$account->balance, 2) }} @else — @endif | @if($account->normal_side === 'credit') {{ number_format((float)$account->balance, 2) }} @else — @endif |
| لا توجد بيانات | ||||
| الإجمالي | {{ number_format($totalDebit, 2) }} | {{ number_format($totalCredit, 2) }} | ||