@extends('backend.admin.layouts.app') @section('title', ucfirst(Request::segment(2))) @section('content')
@can('Bank Account create') @endcan

Bank Accounts

@foreach ($bankAccounts as $key => $row) @endforeach
# Balance Image Name Bank Type Holder Name Account# IBAN Address Country Action
{{ $key + 1 }} {{ $row->balance }} {{ $row->bank_name }} {{ $row->type }} {{ $row->holder_name }} {{ $row->account_no }} {{ $row->iban }} {{ $row->address }} {{ App\Models\Country::where('id', $row->country_id)->value('name') }} @can('Bank Account edit') @endcan @can('Bank Account delete') @endcan
@endsection