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

{{ str_replace('THE LIFT - Jazz Club - ', 'JC - ', $evento->nombre) }} {{ date('d/m',strtotime($evento->fecha)) }}

{{ Html::linkRoute('mozo.mesas', 'Mesas', Hashids::encode($evento->id, time()), array('class' => 'btn btn-outline-secondary btn-block')) }}

Salon Carta

@if(count($productos)) @foreach ($productos as $key => $producto) @endforeach
Cantidad Precio Nombre Categoria
$ {{ number_format($producto->precio($evento->id), 0, '', '.') }} {{ $producto->nombre }} {{ $producto->categoria->nombre }}
@else

No Existen Registros


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