@extends('admin.layouts.master') @section('title', 'تفاصيل القيد اليدوي') @section('content')

{{ $entry->entry_number }}

{{ optional($entry->entry_date)->format('Y-m-d') ?? $entry->entry_date }} - {{ $entry->description ?: 'بدون وصف' }}

عودة
@foreach($entry->lines as $line) @endforeach
# الحساب البيان مدين دائن
{{ $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) }}
@endsection