rework components

This commit is contained in:
TimmensOne
2023-03-29 22:32:49 +02:00
parent 7a8e277887
commit 656056a3b3
17 changed files with 217 additions and 33 deletions

View File

@@ -12,6 +12,12 @@ class User extends Authenticatable
{
use HasApiTokens, HasFactory, Notifiable;
/**
* The table associated with the model.
* @var string
*/
protected $table = 'users';
/**
* The primary key associated with the users table.
* @var string
@@ -31,6 +37,8 @@ class User extends Authenticatable
'hashed_password'
];
//ID is not auto-incrementing.
public $incrementing = false;
//Timestamps are disabled.
public $timestamps = false;