28 lines
920 B
PHP
28 lines
920 B
PHP
<table class="table table-hover table-zebra">
|
|
<thead>
|
|
<tr class="text-neutral">
|
|
<th>Codigo</th>
|
|
<th>Pago Efectivo</th>
|
|
<th>Pago Tarjeta Debito</th>
|
|
<th>Pago Tarjeta Credito</th>
|
|
<th>Pago Tarjeta Vales</th>
|
|
<th>Registrado por</th>
|
|
<th>Tipo Venta</th>
|
|
<th>Fecha</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($ventas as $venta)
|
|
<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>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table> |