Moved auth models into right folder

This commit is contained in:
Henry Whitaker
2021-04-10 22:55:19 +01:00
parent 99c64af482
commit 7cf8dfc0b2
7 changed files with 7 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace App\Models\Auth;
use Illuminate\Database\Eloquent\Model;
class EmailVerification extends Model
{
protected $fillable = [
'user_id',
'token',
'expires'
];
}

View File

@@ -0,0 +1,21 @@
<?php
namespace App\Models\Auth;
use Illuminate\Database\Eloquent\Model;
class LoginSession extends Model
{
protected $fillable = [
'id',
'token',
'active',
'user_id',
'expires',
'ip'
];
protected $table = 'active_sessions';
public $incrementing = false;
}