1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-24 06:30:20 +01:00
openstamanager/modules/anagrafiche/src/Nazione.php
2020-02-14 17:02:16 +01:00

16 lines
238 B
PHP
Executable File

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