@extends(niche_shell_layout()) @section('title', niche_label('finance.bank_accounts', 'الحسابات البنكية').' - '.config('app.name')) @section('breadcrumb') الرئيسية المحاسبة الحسابات البنكية @endsection @section('content')

{{ niche_label('finance.bank_accounts', 'الحسابات البنكية') }}

إدارة الحسابات البنكية والأرصدة

+ إضافة حساب بنكي

قائمة الحسابات البنكية

@php $bankAccountStatusOpts = [ ['value' => '', 'label' => 'الكل'], ['value' => 'active', 'label' => 'نشط'], ['value' => 'inactive', 'label' => 'غير نشط'], ]; @endphp
@if($accounts->count() > 0)
@foreach($accounts as $account) @endforeach
اسم البنك رقم الحساب العملة حساب الدليل الرصيد المحاسبي الحالة الإجراءات
{{ $account->bank_name }} {{ $account->account_number }} {{ $account->currency }} @if($account->ledgerAccount) {{ $account->ledgerAccount->code }} {{ $account->ledgerAccount->name_ar }} @else غير مربوط @endif {{ erp_money((float) $account->current_balance) }} {{ $account->currency }} @if($account->status === 'active') نشط @else غير نشط @endif @php $bankAccMenuId = 'bank-account-actions-'.$account->id; @endphp تعديل الحساب البنكي
@csrf @method('DELETE')
@else
لا توجد حسابات بنكية
@endif
@if($accounts->hasPages())
{{ $accounts->links() }}
@endif
@endsection