@extends('layouts.admin') @section('title', 'Banking Overview') @section('page-title', 'Banking Overview') @section('breadcrumbs') Banking Overview @endsection @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

Banking Overview

add Add Bank Account

Cash In Hand

{{ number_format($cashInHand ?? 0, 2) }}

payments

Bank Balance

{{ number_format($bankBalance ?? 0, 2) }}

account_balance

Total Accounts

{{ $totalAccounts ?? 0 }}

credit_card

Total Balance

{{ number_format($totalBalance ?? 0, 2) }}

account_balance_wallet

Bank Accounts

Manage your bank accounts for payments and transactions.

add Add Bank Account
@forelse($bankAccounts ?? [] as $account) @empty @endforelse
Account Name Bank Name Account Number Currency Balance Actions
{{ $account->account_name }} {{ $account->bank_name }} {{ $account->account_number }} {{ $account->currency }} {{ \App\Models\Currency::formatAmount($account->current_balance ?? 0, $account->currency) }}
account_balance

No bank accounts found

Balance Trend

{{ $balanceTrend['subtitle'] ?? '' }}

@endsection @push('scripts') @endpush