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

22
app/Models/NfcVoucher.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class NfcVoucher extends Model
{
use HasFactory;
protected $fillable = [
'nfc_type',
'nfc_following',
'nfc_expiration',
'nfc_amount',
'nfc_next',
'nfc_select',
'nfc_used',
'user_id',
];
}