This commit is contained in:
2025-10-22 20:08:22 +05:00
commit 736e3bef18
2573 changed files with 120385 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?php
namespace App\Modules\OtpVerification\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Carbon;
/**
* @property int $id
* @property string $username
* @property string $code
* @property Carbon|null $created_at
* @property Carbon|null $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'];
}