@extends('layouts.master') @section('page_title', 'Accounts') @section('content')
Chart of Accounts
Financial Reports New Account
@forelse($accounts as $account) @empty @endforelse
Code Name Type Opening Balance Current Balance Actions
{{ $account->account_code }} {{ $account->name }} {{ $account->accountType->name ?? '' }} {{ number_format($account->opening_balance, 2) }} {{ number_format($account->current_balance, 2) }} View Edit
No accounts found.
{{ $accounts->appends(request()->query())->links('pagination::bootstrap-4') }}
@endsection