Files
api_arrahn/app/OtpToken.php
T
LAPTOP-DGCU80CH\user1 2016959518 otp
2020-12-07 14:54:54 +08:00

27 lines
461 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class OtpToken extends Model
{
protected $table = 'otp_token';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'nokp','token','used','expired'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}