1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-24 22:42:33 +01:00
openstamanager/modules/anagrafiche/src/Nazione.php

16 lines
238 B
PHP
Raw Normal View History

2018-09-24 18:10:16 +02:00
<?php
namespace Modules\Anagrafiche;
use Common\Model;
2018-09-24 18:10:16 +02:00
class Nazione extends Model
{
protected $table = 'an_nazioni';
public function anagrafiche()
{
return $this->hasMany(Anagrafica::class, 'id_nazione');
}
}