Finalizacion de la primera version del proyecto
This commit is contained in:
@@ -34,25 +34,29 @@
|
||||
<tr class="text-neutral">
|
||||
<th>Codigo</th>
|
||||
<th>Pago Efectivo</th>
|
||||
<th>Pago Tarjeta Debito</th>
|
||||
<th>Pago Tarjeta Credito</th>
|
||||
<th>Pago Tarjeta</th>
|
||||
<th>Pago Tarjeta Vales</th>
|
||||
<th>Pago Transferencia</th>
|
||||
<th>Suma Pagos</th>
|
||||
<th>Total a pagar</th>
|
||||
<th>Registrado por</th>
|
||||
<th>Tipo Venta</th>
|
||||
<th>Fecha</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach ($ventas as $venta)
|
||||
@foreach ($movimientos as $movimiento)
|
||||
<tr>
|
||||
<th>{{ $venta->codigo }}</th>
|
||||
<th>{{ $venta->pago_efectivo }}</th>
|
||||
<th>{{ $venta->pago_tarjeta_debito }}</th>
|
||||
<th>{{ $venta->pago_tarjeta_credito }}</th>
|
||||
<th>{{ $venta->pago_vales }}</th>
|
||||
<th>{{ $venta->user->name }}</th>
|
||||
<th>{{ $venta->estadoVenta->nombre }}</th>
|
||||
<th>{{ $venta->created_at }}</th>
|
||||
<th>{{ $movimiento->codigo }}</th>
|
||||
<th>{{ $movimiento->pago_efectivo }}</th>
|
||||
<th>{{ $movimiento->pago_tarjeta }}</th>
|
||||
<th>{{ $movimiento->pago_vales }}</th>
|
||||
<th>{{ $movimiento->pago_transferencia }}</th>
|
||||
<th>{{ $movimiento->totalAbono() }}</th>
|
||||
<th>{{ $movimiento->precio_venta }}</th>
|
||||
<th>{{ $movimiento->user->name }}</th>
|
||||
<th>{{ $movimiento->estadoMovimiento->nombre }}</th>
|
||||
<th>{{ $movimiento->created_at }}</th>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
|
||||
Reference in New Issue
Block a user