@extends('template.layoutAdmin', ['activeButton' => 'gastos']) @section('cabecera')

{{ trans('gastos.gastos') }}

@endsection @section('style') @endsection @section('title') @endsection @section('contenido')
@foreach ($gastos["data"] as $currentGasto) @endforeach
{{ 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
{{-- --}} @endsection @section('js') @endsection