@extends('template.layoutAdmin', ['activeButton'=>'general']) @section('title') {{ trans('caja.caja') }} @endsection @section('cabecera')

{{ trans('caja.caja') }} {{ trans('caja.mensajeAyuda') }}

@endsection @section('contenido')
@if(Session::has('message')) @endif @if(Session::has('message_error')) @endif

{{ trans('caja.listaDeCajas') }}

@sidebar('caja.store') @endsidebar
@foreach ($caja as $item) @endforeach
{{ trans('caja.nombre') }} {{ trans('caja.descripcion') }} {{ trans('caja.estado') }} {{ trans('caja.opciones') }}
{{$item->nombre}} {{$item->descripcion}} @if ($item->idEstado == 1) {{ trans('caja.activo') }} @else {{ trans('caja.inactivo') }} @endif @if ($item->idEstado == 1) @endif
{{-- Crear Caja --}} {{-- Editar Caja --}} @endsection @section('js') @endsection