@extends('admin.default') @section('css') @endsection @section('content')

Bank Accounts

@include('include.messages')
Reset

Bank Account Records

@forelse($accounts as $index => $account) @empty @endforelse
ID Bank Name Account Title Account Number Account Type Opening Balance Closing Balance Action
{{ $account->id }} {{ $account->bank_name }} {{ $account->display_name }} {{ $account->account_number }} {{ ucfirst($account->account_type) }} {{ number_format($account->opening_balance, 2) }} {{ number_format($account->closing_balance, 2) }}
No bank account records found.
@if($accounts->total() > 5) @endif
@endsection @section('js') @endsection