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

Vender Prueba {{ $evento->nombre }} {{ date('d/m/Y',strtotime($evento->fecha)) }}

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

Carta

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

No Existen Registros


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