mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-24 14:31:52 +01:00
Moved auth models into right folder
This commit is contained in:
14
app/Models/Auth/EmailVerification.php
Normal file
14
app/Models/Auth/EmailVerification.php
Normal 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'
|
||||
];
|
||||
}
|
||||
21
app/Models/Auth/LoginSession.php
Normal file
21
app/Models/Auth/LoginSession.php
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user