{{ __('الحساب البنكي') }}
{{ $withdrawal->bankAccount->account_number }} - {{ $withdrawal->bankAccount->bank->name }}
{{ __('تاريخ السحب') }}
{{ $withdrawal->withdrawal_date ? $withdrawal->withdrawal_date->format('Y-m-d') : '-' }}
{{ __('المبلغ') }}
{{ number_format($withdrawal->amount, 2) }}
{{ __('رقم المرجع') }}
{{ $withdrawal->reference_number ?: '-' }}
{{ __('طريقة السحب') }}
@if($withdrawal->withdrawal_method == 'cash') {{ __('نقدي') }} @elseif($withdrawal->withdrawal_method == 'check') {{ __('شيك') }} @elseif($withdrawal->withdrawal_method == 'transfer') {{ __('تحويل بنكي') }} @elseif($withdrawal->withdrawal_method == 'other') {{ __('أخرى') }} @endif
{{ __('المستفيد') }}
{{ $withdrawal->beneficiary ?: '-' }}
{{ __('الحساب الوجهة') }}
{{ $withdrawal->chartOfAccount ? $withdrawal->chartOfAccount->name . ' - ' . $withdrawal->chartOfAccount->code : '-' }}
{{ __('مركز التكلفة') }}
{{ $withdrawal->costCenter ? $withdrawal->costCenter->name . ' (' . $withdrawal->costCenter->code . ')' : '-' }}
{{ __('رقم الشيك') }}
{{ $withdrawal->check_number ?: '-' }}
{{ __('الوصف') }}
{{ $withdrawal->description ?: '-' }}
{{ __('تاريخ الإنشاء') }}
{{ $withdrawal->created_at->format('Y-m-d H:i') }}
{{ __('بواسطة') }}
{{ $withdrawal->createdBy ? $withdrawal->createdBy->name : '-' }}
{{ __('تاريخ التحديث') }}
{{ $withdrawal->updated_at->format('Y-m-d H:i') }}
{{ __('تم التحديث بواسطة') }}
{{ $withdrawal->approvedBy ? $withdrawal->approvedBy->name : '-' }}