This commit is contained in:
root
2023-03-29 15:20:05 +00:00
parent 5ec489e0e0
commit a0bb8f2d1e
25468 changed files with 3063105 additions and 28 deletions
@@ -0,0 +1,14 @@
<?php
namespace App\Models\Auth;
use Illuminate\Database\Eloquent\Model;
class EmailVerification extends Model
{
protected $fillable = [
'user_id',
'token',
'expires'
];
}