@extends('layouts.nav') @section('title') General Ledger @endsection @section('content')

Main Accounts

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

@foreach ($mainAccounts as $mainAccount) @endforeach
Account Type Account Code Account Name Sub Account Action
Account Type Account Code Account Name Sub Account Action
{{ $mainAccount->Name }} {{ $mainAccount->AccCode }} {{ $mainAccount->AccName }} Sub Account
@endsection