vhost/app/Entities/CategoryEntity.php
2024-05-07 13:20:45 +09:00

26 lines
578 B
PHP

<?php
namespace App\Entities;
class CategoryEntity extends BaseHierarchyEntity
{
protected $datamap = [];
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
protected $casts = [];
//기본기능
public function getTitle(): string
{
return $this->attributes['name'];
}
//추가기능
//CommonHelper에서 사용
public function getRole($field = 'isaccess')
{
return array_key_exists(
$field,
$this->attributes
) ? $this->attributes[$field] : DEFAULTS['ROLE'];
}
}