Actualizacion de Diseño Logins y Parte de Registro Negocios

This commit is contained in:
kquiroz
2023-08-23 16:11:21 -04:00
parent d71e89adae
commit 38bf59042d
3498 changed files with 691264 additions and 0 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>