shoppingmallv2/app/Entities/UserEntity.php
2023-08-16 19:26:53 +09:00

22 lines
421 B
PHP

<?php
namespace App\Entities;
class UserEntity extends BaseEntity
{
protected $datamap = [];
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
protected $casts = [];
//기본기능
public function getTitle(): string
{
return $this->attributes['name'];
}
//추가기능
public function getPassword()
{
return $this->attributes['passwd'];
}
}