@extends('layouts.app') @section('content')
| Código | Nombre | Tipo | Categoría | Nivel | Estado | Acciones |
|---|---|---|---|---|---|---|
{{ $account->code }}
|
@if($account->level > 1)
└
@endif
{{ $account->name }}
|
@php $typeColors = [ 'asset' => 'success', 'liability' => 'danger', 'equity' => 'info', 'revenue' => 'warning', 'expense' => 'secondary' ]; $color = $typeColors[$account->type] ?? 'secondary'; @endphp {{ ucfirst($account->type) }} | {{ $account->category ? ucfirst(str_replace('_', ' ', $account->category)) : 'N/A' }} | {{ $account->level }} | {{ $account->is_active ? 'Activo' : 'Inactivo' }} | |
|
No se encontraron cuentas |
||||||