25 lines
565 B
PHP
25 lines
565 B
PHP
<?php
|
|
namespace Incoviba\Model\Venta;
|
|
|
|
use DateTimeInterface;
|
|
use Incoviba\Common\Ideal;
|
|
use Incoviba\Model\Venta;
|
|
|
|
class Comentario extends Ideal\Model
|
|
{
|
|
public Venta $venta;
|
|
public DateTimeInterface $fecha;
|
|
public string $texto;
|
|
public bool $activo;
|
|
|
|
public function jsonSerialize(): mixed
|
|
{
|
|
return array_merge(parent::jsonSerialize(), [
|
|
'venta_id' => $this->venta->id,
|
|
'fecha' => $this->fecha->format('Y-m-d'),
|
|
'texto' => $this->texto,
|
|
'activo' => $this->activo
|
|
]);
|
|
}
|
|
}
|