14af284103
Rebuilt member authorization and session handling within Laravel's envirnoment. Sticking with bcrypt encryption for passwords to make the transistion simple.
15 lines
340 B
PHP
15 lines
340 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use App\Models\User as Authenticatable;
|
|
|
|
class Member extends Authenticatable
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = "member";
|
|
protected $fillable = ["uuid", "handle", "email", "password", "active", "role", "avatar", "pronoun", "gender"];
|
|
}
|