@extends('layouts.main') @section('content')

Bank Accounts List

@forelse($counters as $index => $account) @empty @endforelse
# Name Bank Name Account Number Account Holder IFSC Code UPI ID Action
{{ $index + 1 }} {{ $account->name }} {{ $account->bank_name }} {{ $account->account_number }} {{ $account->account_name }} {{ $account->ifsc_code }} {{ $account->upi_id ?? '-' }} Edit
@csrf @method('DELETE')
No bank accounts found.
@endsection