@extends('layouts.app') @section('title', 'Chart of Accounts') @section('content')

Chart of Accounts

Journal Entries P&L Balance Sheet
@foreach ($accounts as $a) @endforeach
CodeNameTypeBalance
{{ $a->code }} {{ $a->name }} {{ ucfirst($a->type) }} {{ number_format($a->balance(), 2) }}
@csrf @method('DELETE')
@endsection