@extends('layouts.app') @section('content')
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' }}