@extends('seller.layouts.app') @section('panel_content')
| ID | NFC Tipo | NFC Siguiente | NFC Vencimiento | NFC Cantidad | NFC Próximo | NFC Estado | NFC Usado |
|---|---|---|---|---|---|---|---|
| {{ $nfc_voucher->id }} | {{ $nfc_voucher->nfc_type }} | {{ $nfc_voucher->nfc_following }} | {{ $nfc_voucher->nfc_expiration }} | {{ $nfc_voucher->nfc_amount }} | {{ $nfc_voucher->nfc_next }} | @if($nfc_voucher->nfc_select == 'active') Activo @elseif($nfc_voucher->nfc_select == 'deactivated') Desactivado @endif | @if($nfc_voucher->nfc_used == 'not_use') No usado @elseif($nfc_voucher->nfc_used == 'in_use') En uso @endif |