@extends('layouts.admin') @section('title', 'Bank Accounts') @section('content')

Bank Accounts

Manage all linked bank accounts.

All Bank Accounts

@forelse($accounts as $account) @empty @endforelse
Bank Name Account Number Branch Balance Actions
{{ $account->bank_name }} {{ $account->account_number }} {{ $account->branch }} Rs. {{ number_format($account->balance, 2) }} Edit
@csrf @method('DELETE')
No bank accounts found.
{{ $accounts->links() }}

Add New Bank Account

@csrf
@endsection