shoppingmallv2/app/Entities/PaymentEntity.php
2023-08-10 16:50:14 +09:00

20 lines
347 B
PHP

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