1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-01 00:16:55 +01:00
2019-01-02 14:15:16 +01:00

28 lines
421 B
PHP

<?php
namespace Modules\DDT\Components;
use Common\Components\Row;
use Modules\DDT\DDT;
class Riga extends Row
{
use RelationTrait;
protected $table = 'dt_righe_ddt';
/**
* Crea una nuova riga collegata ad una ddt.
*
* @param DDT $ddt
*
* @return self
*/
public static function build(DDT $ddt)
{
$model = parent::build($ddt);
return $model;
}
}