@extends('admin.layouts.master') @section('title', 'تفاصيل القيد اليدوي') @section('content')
{{ optional($entry->entry_date)->format('Y-m-d') ?? $entry->entry_date }} - {{ $entry->description ?: 'بدون وصف' }}
| # | الحساب | البيان | مدين | دائن |
|---|---|---|---|---|
| {{ $line->line_no }} | {{ $line->account?->account_number }} - {{ $line->account?->name }} | {{ $line->memo ?: '—' }} | {{ number_format((float) $line->debit, 2) }} | {{ number_format((float) $line->credit, 2) }} |
| الإجمالي | {{ number_format((float) $entry->total_debit, 2) }} | {{ number_format((float) $entry->total_credit, 2) }} | ||