@extends('layouts.layout-horizontal') @section('title', 'Bank Account Openings') @section('content')
Openings – {{ $bankAccount->name }}
Add Opening
@forelse($openings as $o) @empty @endforelse
DateAmountNoteActions
{{ $o->effective_date->format('d-M-Y') }} {{ indian_number($o->amount,2) }} {{ $o->note }}
No openings yet.
@endsection