Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 5, 2019 16:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/0cdd580cd59247042c071d39762d265e to your computer and use it in GitHub Desktop.
Save parzibyte/0cdd580cd59247042c071d39762d265e to your computer and use it in GitHub Desktop.
<div class="col-xs-12">
<a class="btn btn-info" href="<?php echo base_url() ?>/index.php/ventas">Ver todas las ventas</a>
<h1>Detalles de la venta #<?php echo $venta->detalles->id; ?></h1>
<h4>Total: <span class="label label-success"><?php echo $venta->detalles->total ?></span></h4>
<h4>Fecha: <span class="label label-primary"><?php echo $venta->detalles->fecha ?></span></h4>
<h2>Productos vendidos</h2>
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr>
<th>Código</th>
<th>Descripción</th>
<th>Cantidad</th>
<th>Precio</th>
<th>Total</th>
</tr>
</thead>
<tbody>
<?php foreach($venta->productos as $producto){ ?>
<tr>
<td><?php echo $producto->codigo ?></td>
<td><?php echo $producto->descripcion ?></td>
<td><?php echo $producto->cantidad ?></td>
<td><?php echo $producto->precio ?></td>
<td><?php echo $producto->cantidad * $producto->precio ?></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment