'boolean', 'last_login_at' => 'datetime', 'password' => 'hashed', ]; } public function profile(): HasOne { return $this->hasOne(UserProfile::class); } public function employee(): HasOne { return $this->hasOne(Employee::class); } }