@extends('layouts.layout-horizontal')
@section('title', 'Bank Account Openings')
@section('content')
| Date | Amount | Note | Actions |
@forelse($openings as $o)
| {{ $o->effective_date->format('d-M-Y') }} |
{{ indian_number($o->amount,2) }} |
{{ $o->note }} |
|
@empty
| No openings yet. |
@endforelse
@endsection