EmailVerification
extends Model
in package
uses
HasFactory
Email Verification Model
This model manages email verification processes and OTP (One-Time Password) functionality for the security system. It stores verification attempts, OTP codes, and tracking data for email verification workflows.
Tags
Table of Contents
Properties
- $fillable : array<string|int, string>
- The attributes that are mass assignable.
Methods
- __construct() : void
- Create a new EmailVerification model instance.
Properties
$fillable
The attributes that are mass assignable.
protected
array<string|int, string>
$fillable
= ['email', 'ip_address', 'count', 'date_time', 'otp', 'created_by', 'updated_by', 'created_at', 'updated_at']
Methods
__construct()
Create a new EmailVerification model instance.
public
__construct() : void
Sets the table name from configuration constants.