@extends(niche_shell_layout()) @section('title', 'عرض قيد - '.config('app.name')) @section('breadcrumb') الرئيسية لوحة المحاسبة القيود اليومية عرض قيد {{ $entry->id }} @endsection @section('content')

عرض قيد #{{ $entry->id }}

للقراءة فقط — استخدم «تعديل القيد» لتغيير البيانات.

تفاصيل القيد

تاريخ القيد
{{ $entry->date?->format('Y-m-d') ?? '—' }}
المرجع
{{ $entry->reference ?: '—' }}
البيان
{{ $entry->description ?: '—' }}
@if(filled($entry->notes))
ملاحظات
{{ $entry->notes }}
@endif
الإجمالي (مدين / دائن)
{{ number_format((float) $entry->total, 2) }}

بنود القيد

@foreach($entry->items as $line) @endforeach
الحساب الوصف مركز التكلفة مدين دائن
@if($line->account) {{ $line->account->code }} — {{ $line->account->name_ar ?? $line->account->name_en ?? '—' }} @else — @endif {{ $line->description ?: '—' }} {{ $line->cost_center ?: '—' }} {{ $line->debit > 0 ? number_format((float) $line->debit, 2) : '—' }} {{ $line->credit > 0 ? number_format((float) $line->credit, 2) : '—' }}
@if($entry->attachments->isNotEmpty())

المرفقات

@endif
@endsection