@extends('layouts.app') @section('title', 'Asientos Contables') @section('content')
| N° Asiento | Fecha | Período | Referencia | Descripción | Estado | Creado por | Acciones |
|---|---|---|---|---|---|---|---|
| {{ $entry->entry_number ?? 'N/A' }} | {{ $entry->entry_date ? $entry->entry_date->format('d/m/Y') : 'N/A' }} | @if($entry->period) {{ $entry->period->name }} @else N/A @endif | {{ $entry->reference ?? '-' }} | @if($entry->description) {{ Str::limit($entry->description, 50) }} @else - @endif | @if($entry->status === 'posted') Contabilizado @elseif($entry->status === 'draft') Borrador @elseif($entry->status === 'cancelled') Cancelado @else {{ $entry->status ?? 'N/A' }} @endif | @if($entry->createdBy) {{ $entry->createdBy->name ?? 'Usuario' }} @else Sistema @endif |
Comienza creando tu primer asiento contable para registrar transacciones.
Crear Primer Asiento