shoppingmallv2/app/Entities/ProductEntity.php
2023-08-08 10:49:05 +09:00

18 lines
334 B
PHP

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