*/ protected $fillable = [ 'id', 'name', 'email', 'password', 'guid', 'guid_faculty', 'guid_group', 'first_name', 'last_name', 'middle_name', 'number_record_book', 'faculty', 'course', 'group', 'code', 'form_education', ]; /** * The attributes that should be hidden for serialization. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; /** * Get the attributes that should be cast. * * @return array */ protected function casts(): array { return [ 'email_verified_at' => 'datetime', 'password' => 'hashed', ]; } public function hashRecord(): HasOne { return $this->hasOne(HashRecord::class); } }