HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /var/www/devs.lapieza.net/resources/views/seller/pos_old/exports/
Upload File :
Current File : /var/www/devs.lapieza.net/resources/views/seller/pos_old/exports/nfc_chourches.blade.php
<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>