configuracion de nfc y export exel

This commit is contained in:
Jose Sanchez
2023-08-08 11:01:11 -04:00
parent 79422c66b8
commit edd191b4be
8 changed files with 495 additions and 2 deletions

View File

@@ -0,0 +1,41 @@
<table id="nfc_vouchers_table" class="table table-striped">
<thead>
<tr>
<th>ID</th>
<th>NFC Tipo</th>
<th>NFC Siguiente</th>
<th>NFC Vencimiento</th>
<th>NFC Cantidad</th>
<th>NFC Próximo</th>
<th>NFC Estado</th>
<th>NFC Usado</th>
</tr>
</thead>
<tbody>
@foreach($nfc_vouchers as $nfc_voucher)
<tr>
<td>{{ $nfc_voucher->id }}</td>
<td>{{ $nfc_voucher->nfc_type }}</td>
<td>{{ $nfc_voucher->nfc_following }}</td>
<td>{{ $nfc_voucher->nfc_expiration }}</td>
<td>{{ $nfc_voucher->nfc_amount }}</td>
<td>{{ $nfc_voucher->nfc_next }}</td>
<td>
@if($nfc_voucher->nfc_select == 'active')
Activo
@elseif($nfc_voucher->nfc_select == 'deactivated')
Desactivado
@endif
</td>
<td>
@if($nfc_voucher->nfc_used == 'not_use')
No usado
@elseif($nfc_voucher->nfc_used == 'in_use')
En uso
@endif
</td>
</tr>
@endforeach
</tbody>
</table>