@extends('layouts.app') @section('title', 'Gestionar Caja Chica') @section('content')
Administración de cuentas de caja chica
| Código | Nombre | Moneda | Saldo Actual | Responsable | Estado | Acciones |
|---|---|---|---|---|---|---|
| {{ $account->code }} |
{{ $account->name }}
@if($account->description)
{{ Str::limit($account->description, 50) }}
@endif
|
{{ strtoupper($account->currency) }} | ${{ number_format($account->current_balance, 2) }} |
{{ $account->responsiblePerson->name ?? 'N/A' }}
@if($account->location)
{{ $account->location }}
@endif
|
@if($account->is_active) Activo @else Inactivo @endif |
Comienza agregando tu primera cuenta de caja chica al sistema.
Agregar Primera Caja Chica