16 lines
337 B
PHP
16 lines
337 B
PHP
<?php
|
|
|
|
namespace App\Entities\Equipment\Part;
|
|
|
|
use App\Models\Equipment\Part\CpuModel;
|
|
|
|
class CpuEntity extends PartEntity
|
|
{
|
|
const PK = CpuModel::PK;
|
|
const TITLE = CpuModel::TITLE;
|
|
public function getTitle(): string
|
|
{
|
|
return parent::getTitle() . " [" . number_format($this->attributes['price']) . "원]";
|
|
}
|
|
}
|