contact and email api updated

This commit is contained in:
Hritikkk9
2024-04-10 17:37:16 +05:30
parent 56a09ee3ac
commit f366e60173
3 changed files with 206 additions and 22 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class UserOtpModel extends Model
{
use HasFactory;
protected $table = 'users_otp';
protected $guarded = [];
}