@extends('layouts.master') @section('title', 'eventos') @section('content')

Administrativo Comandas

{{ Html::linkRoute('administrativo.eventos', 'Volver', null, array('class' => 'btn btn-secondary btn-block')) }}

{{ $evento->nombre }}

@if(count($comandas)) @foreach ($comandas as $key => $comanda) @if($comanda->medio_id != 4) @else @endif @endforeach
Producto Cliente Tipo Medio Precio
{{ $comanda->producto->nombre }} {{ $comanda->nombre }} {{ $comanda->tipo->nombre }} {{ $comanda->medio->nombre }}$ {{ number_format($comanda->total, 0, ',', '.') }}$ {{ number_format($comanda->total, 0, ',', '.') }}
Total $ {{ number_format(0, 0, '', '.') }}
@else

No Existen Registros


@endif
@endsection @section('javascript') @endsection