@extends('layouts.app') @section('title', 'Chart of Accounts') @push('stylesheets') @include('partials.index-datatable-styles') @include('partials.filter-card-styles') @endpush @section('contents')
@forelse ($chartOfAccounts as $row) {{ $row->code }} {{ \Illuminate\Support\Str::limit($row->title, 80) }} @if ($row->parent) {{ $row->parent->code }} @else @endif {{ $row->budget_type ? ucfirst($row->budget_type) : '—' }} {{ $row->types ?? '—' }} {{ $row->sort_order }} @if($row->status) Active @else Inactive @endif {{ $row->created_at->format('d M Y') }} @empty @endforelse
@endsection @push('scripts') @include('partials.index-datatable-scripts') @endpush