Files
tbbank-new/app/Modules/OtpVerification/Models/OtpVerification.php
2025-10-22 20:08:22 +05:00

27 lines
542 B
PHP

<?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'];
}