@extends('layouts.master') @section('title', 'Vender') @section('content') {{-- ========================================================= ENCABEZADO ========================================================= --}}

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

{{-- ========================================================= CARTA ========================================================= --}}

Caja Carta

@if(count($productos))
@foreach($productos as $producto) @php $precioProducto = $producto->precio($evento->id); @endphp @endforeach
Cantidad Uno Producto Precio
{{ $producto->nombre }} $ {{ number_format( $precioProducto, 0, '', '.' ) }}
@else

No existen registros


@endif
{{-- ========================================================= MODAL CARGAR DINERO ========================================================= --}} {{-- ========================================================= MODAL CARGAR PEDIDO POR NOMBRE ========================================================= --}} {{-- ========================================================= MODAL CERRAR PEDIDO POR CÓDIGO ========================================================= --}} {{-- ========================================================= JAVASCRIPT DEL CARRITO ========================================================= --}} {{-- ========================================================= DATATABLES ========================================================= --}} @endsection