mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-24 22:39:26 +01:00
15 lines
200 B
PHP
15 lines
200 B
PHP
<?php
|
|
|
|
namespace App\Auth;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class EmailVerification extends Model
|
|
{
|
|
protected $fillable = [
|
|
'user_id',
|
|
'token',
|
|
'expires'
|
|
];
|
|
}
|