1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-20 12:14:01 +01:00
openstamanager/update/v2_4_10/TipoAnagrafica.php
2020-02-14 17:02:16 +01:00

35 lines
632 B
PHP
Executable File

<?php
namespace Update\v2_4_10;
use Common\Model;
class TipoAnagrafica extends Model
{
protected $table = 'an_tipianagrafiche';
protected $primaryKey = 'idtipoanagrafica';
protected $appends = [
'id',
];
protected $hidden = [
'idtipoanagrafica',
];
/**
* Restituisce l'identificativo.
*
* @return int
*/
public function getIdAttribute()
{
return $this->idtipoanagrafica;
}
public function anagrafiche()
{
return $this->hasMany(Anagrafica::class, 'an_tipianagrafiche_anagrafiche', 'idtipoanagrafica', 'idanagrafica');
}
}