@extends('layouts.layout-horizontal') @section('title', 'View Bank Account') @section('content')
{{ $bankAccount->name }}
Back Edit Openings
Bank: {{ $bankAccount->bank_name ?? '—' }}
Branch: {{ $bankAccount->branch ?? '—' }}
Account No: {{ $bankAccount->account_no }}
IFSC: {{ $bankAccount->ifsc ?? '—' }}
@if($bankAccount->mode !== 'cash')
Opening Balance: {{ indian_number($bankAccount->opening_balance,2) }}
@endif
Current Balance: {{ indian_number($bankAccount->current_balance,2) }}
Openings
@forelse($bankAccount->openings as $o) @empty @endforelse
DateAmountNote
{{ $o->effective_date->format('d-M-Y') }} {{ indian_number($o->amount,2) }} {{ $o->note }}
No openings yet.
@endsection