shoppingmallv2/app/Entities/BillingEntity.php
2023-08-17 18:06:18 +09:00

20 lines
343 B
PHP

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