@extends('layouts.app') @section('title', 'Chart of Accounts') @section('content') @include('super-admin.partials.nav') Finance home
@foreach ($accounts as $account) @endforeach
Code Name Type Active System
{{ $account->code }} {{ $account->name }} {{ $account->type }} {{ $account->is_active ? 'Yes' : 'No' }} {{ $account->is_system ? 'Yes' : 'No' }}
@endsection