@extends('layouts.app') @section('content')

Plan de Cuentas

@forelse($accounts as $account) @empty @endforelse
Código Nombre Tipo Categoría Nivel Estado Acciones
{{ $account->code }} {{ $account->name }} {{ ucfirst($account->type) }} {{ $account->category ? ucfirst(str_replace('_', ' ', $account->category)) : 'N/A' }} {{ $account->level }} {{ $account->is_active ? 'Activo' : 'Inactivo' }}
@csrf
No hay cuentas registradas
@endsection