@extends('template.layoutAdmin', ['activeButton' => 'gastos']) @section('cabecera')
{{ trans('gastos.nombre') }} | {{ trans('gastos.descripcion') }} | {{ trans('gastos.fecha') }} | {{ trans('gastos.total') }} | {{ trans('gastos.estado') }} | {{ trans('gastos.acciones') }} |
---|---|---|---|---|---|
{{$currentGasto->nombre}} | {{$currentGasto->descripcion}} | {{$currentGasto->fecha}} | {{$currentGasto->total}} {{App\Helpers\monedaH::getCurrentSimbol()}} | @if ($currentGasto->state == 1) {{ trans('gastos.activo') }} @endif @if($currentGasto->state == 0) {{ trans('gastos.anulado') }} @endif |
@if ($currentGasto->state == 1)
@endif
|