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

Detalles del Gasto

ID: {{ $gasto->id }}

Proveedor: {{ $gasto->proveedor->nombre }}

Categoría: {{ $gasto->categoria }}

Cantidad: {{ number_format($gasto->cantidad, 2) }}

Descripción: {{ $gasto->descripcion }}

Fecha Limite: {{ $gasto->fecha_limite }}

Fecha Pago: {{ $gasto->fecha_pago }}

Pagado: {{ $gasto->pagado == true ? 'PAGADO' : 'PENDIENTE' }}

Estatus: {{ $gasto->estatus == true ? 'ACTIVO' : 'INACTIVO' }}

    Archivos Adjuntos
    @if (count($gasto->documentos) > 0) @foreach ($gasto->documentos as $item)
  • {{ $item->filename }}
  • @endforeach @else
  • Sin Evidencia
  • @endif
@endsection