initial commit
This commit is contained in:
19
app/Models/PasswordResetTokens.php
Normal file
19
app/Models/PasswordResetTokens.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
// use Illuminate\Contracts\Auth\MustVerifyEmail;
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Foundation\Auth\User as Authenticatable;
|
||||
use Illuminate\Notifications\Notifiable;
|
||||
use Laravel\Sanctum\HasApiTokens;
|
||||
|
||||
class PasswordResetTokens extends Authenticatable
|
||||
{
|
||||
const UPDATED_AT = null;
|
||||
use HasApiTokens, HasFactory, Notifiable;
|
||||
protected $fillable = [
|
||||
'email',
|
||||
'token'
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user