Files
api_arrahn/app/OtpToken.php
T
2021-02-01 08:38:39 +08:00

27 lines
470 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','kodcaw'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}