version 1.0
This commit is contained in:
28
resources/views/export/reporteExport.blade.php
Normal file
28
resources/views/export/reporteExport.blade.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user