login controller

This commit is contained in:
2026-02-22 05:07:09 -06:00
parent ac619ecaa9
commit 62c5d4373d
3 changed files with 82 additions and 49 deletions
+35
View File
@@ -0,0 +1,35 @@
<?php
namespace App\Models\Auth;
// use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
class User extends Authenticatable
{
/** @use HasFactory<\Database\Factories\UserFactory> */
use HasFactory, Notifiable;
/**
* The attributes that are mass assignable.
*
* @var list<string>
*/
protected $fillable = [
'character_id',
'character_name',
'character_owner_hash',
];
/**
* The attributes that should be hidden for serialization.
*
* @var list<string>
*/
protected $hidden = [
'remember_token',
];
}