26 lines
501 B
PHP
26 lines
501 B
PHP
<?php
|
|
|
|
namespace App\Modules\OTPVerification\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property string $username
|
|
* @property string $code
|
|
* @property Carbon $created_at
|
|
* @property Carbon $updated_at
|
|
*/
|
|
class OTPVerification extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*/
|
|
protected $table = 'otp_verifications';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected $fillable = ['username', 'code'];
|
|
}
|