Ventas->Listado->Ventas
This commit is contained in:
18
app/src/Model/Venta/Subsidio.php
Normal file
18
app/src/Model/Venta/Subsidio.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?php
|
||||
namespace Incoviba\Model\Venta;
|
||||
|
||||
use Incoviba\Common\Ideal;
|
||||
|
||||
class Subsidio extends Ideal\Model
|
||||
{
|
||||
public Pago $ahorro;
|
||||
public Pago $subsidio;
|
||||
|
||||
public function jsonSerialize(): mixed
|
||||
{
|
||||
return array_merge(parent::jsonSerialize(), [
|
||||
'ahorro' => $this->ahorro,
|
||||
'subsidio' => $this->subsidio
|
||||
]);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user