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

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

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

{{ trans('comanda.listaComandas') }}

@sidebar('comanda.indexComanda') @endsidebar @sidebar('comanda.store') @endsidebar
@foreach ($comanda as $item) @endforeach
{{ trans('comanda.nombre') }} {{ trans('comanda.descripcion') }} Bodega {{ trans('comanda.estado') }} {{ trans('comanda.opciones') }}
{{ $item->nombre }} {{ $item->descripcion }} {{ $item->RelComandaGet ? $item->RelComandaGet->nombre : '' }} @if ($item->idEstado == 1) {{ trans('comanda.activo') }} @else {{ trans('comanda.inactivo') }} @endif @if ($item->idEstado == 1) @endif @sidebar('comanda.eliminar') @endsidebar
{{-- Crear Comanda --}} {{-- Editar Comanda --}} @endsection @section('js') @endsection