@extends('layouts.master') @section('title', 'User') @push('css') @endpush @section('content')
@csrf

Bank Account Information

@foreach ($bankAccounts as $bankAccount) @endforeach
Account Name Account Number Account Type Bank Name Branch Name Initial Balance Status Action
{{ $bankAccount->account_name }} {{ $bankAccount->account_number }} {{ $bankAccount->account_type }} {{ $bankAccount->bank_name }} {{ $bankAccount->branch_id }} {{ $bankAccount->initial_balance }} {{ $bankAccount->status }}
@endsection @push('js') @endpush