@extends('layouts.nav') @section('title') Chart Of Accounts Report @endsection @section('content')

Chart Of Accounts Report

Chart Of Accounts
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf

{{$type}} Accounts

Date

@php use Carbon\Carbon; $todayLongDate = Carbon::now()->format(' F j, Y'); @endphp

{{$todayLongDate}}

Account Type

{{$type}} Accounts

@foreach ($Accs as $acc) @endforeach
Accounts Descriptions
{{$acc->AccCode.'/'.$acc->AccName}}
@endsection