add user register/login form and authentication

This commit is contained in:
TimmensOne
2023-03-27 15:29:49 +02:00
parent 13f933e0b5
commit 4752b23f35
10 changed files with 216 additions and 52 deletions

View File

@ -7,18 +7,21 @@ use Illuminate\Database\Eloquent\Model;
class Device extends Model
{
use HasFactory;
/**
* Timestamps are disabled.
* @var boolean
*/
public $timestamps = false;
/**
* The primary key associated with the table Devices.
* The primary key associated with the devices table.
* @var string
*/
protected $primaryKey = 'device_id';
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = ['device_id', 'title', 'device_type', 'description', 'accessories', 'rz_username_buyer', 'serial_number', 'image_url'];
use HasFactory;
//Timestamps are disabled.
public $timestamps = false;
}

View File

@ -12,25 +12,36 @@ class User extends Authenticatable
{
use HasApiTokens, HasFactory, Notifiable;
/**
* The primary key associated with the users table.
* @var string
*/
protected $primaryKey = 'rz_username';
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'name',
'email',
'password',
'rz_username',
'full_name',
'organisation_unit',
'has_admin_privileges',
'hashed_password'
];
//Timestamps are disabled.
public $timestamps = false;
/**
* The attributes that should be hidden for serialization.
*
* @var array<int, string>
*/
protected $hidden = [
'password',
'remember_token',
'hashed_password',
//'remember_token',
];
/**
@ -38,7 +49,13 @@ class User extends Authenticatable
*
* @var array<string, string>
*/
protected $casts = [
'email_verified_at' => 'datetime',
];
//protected $casts = [
// 'email_verified_at' => 'datetime',
//];
//override variable 'password'
public function getAuthPassword()
{
return $this->hashed_password;
}
}