@extends('layouts.master') @section('content')
Bank Account
Add New
@php $sn = 0; @endphp @foreach ($accounts as $account) @endforeach
ID Account Type Account Name Account Number Branch Address Bank Name Actions
{{ ++$sn }} {{$account->account_type}} {{$account->account_name}} {{$account->account_number}} {{$account->branch_address}} {{$account->bank_name}} @can('accounting-finance.class-wise-fees.edit') Edit @endcan @can('accounting-finance.class-wise-fees.delete')
@csrf @method('DELETE')
@endcan
@endsection