@extends('layouts.app') @section('title', 'Períodos Contables') @section('content')
| Nombre | Fecha Inicio | Fecha Fin | Estado | Notas | Creado | Acciones |
|---|---|---|---|---|---|---|
| {{ $period->name }} | {{ $period->start_date->format('d/m/Y') }} | {{ $period->end_date->format('d/m/Y') }} | @if($period->is_active) Activo @else Inactivo @endif | @if($period->notes) {{ Str::limit($period->notes, 50) }} @else - @endif | {{ $period->created_at->format('d/m/Y H:i') }} |
Comienza creando tu primer período contable para organizar tus registros.
Crear Primer Período