@extends('auth.master') @section('title', 'Pagar') @section('content')
{{ $userEvento->user->nickname()}}, este es tu pedido!
Saldo: ${{ $userEvento->user->saldo() }}
@if($total <= $userEvento->user->saldoRaw()) {{ Form::open(['route' => ['entrada.carta.pagar.saldo', Hashids::encode($userEvento->id, time())], 'method'=>'POST']) }} @else {{ Form::open(['route' => ['entrada.carta.pagar.mp', Hashids::encode($userEvento->id, time())], 'method'=>'POST']) }} @endif| Producto | Cantidad | Subtotal |
|---|---|---|
| {{ $producto->nombre }} | {{ $producto->cantidad }} | {{ Form::hidden('cantidad_'.$producto->id, $producto->cantidad) }}$ {{ number_format($producto->precio * $producto->cantidad, 0, '', '.') }} |
| Total | $ {{ number_format($total, 0, '', '.') }} |