34 lines
1.2 KiB
PHP
34 lines
1.2 KiB
PHP
<table class="table table-hover table-zebra">
|
|
<thead>
|
|
<tr class="text-neutral">
|
|
<th>Codigo</th>
|
|
<th>Pago Efectivo</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 de Movimiento</th>
|
|
<th>Motivo</th>
|
|
<th>Fecha</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($movimientos as $movimiento)
|
|
<tr>
|
|
<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->motivo }}</th>
|
|
<th>{{ $movimiento->created_at }}</th>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table> |