@extends('admin.layouts.master') @section('title', 'تفاصيل الحساب') @section('content')

تفاصيل الحساب

رجوع
الكود: {{ $account->code }}
الاسم: {{ $account->name_ar }}
النوع: {{ $account->type_name }}
الحالة: {{ $account->is_active ? 'نشط' : 'غير نشط' }}
الرصيد الافتتاحي: {{ number_format((float)$account->opening_balance,2) }}
الرصيد الحالي: {{ number_format((float)$account->current_balance,2) }}
العملة: {{ $account->currency_code ?: '-' }}
الجهة المزودة: {{ $account->provider_name ?: '-' }}
رقم الحساب: {{ $account->masked_account_number ?: '-' }}
IBAN: {{ $account->iban ?: '-' }}
Instapay: {{ $account->instapay_identifier ?: '-' }}
@endsection