1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-25 06:55:05 +01:00
openstamanager/modules/anagrafiche/src/Nazione.php

16 lines
236 B
PHP
Raw Normal View History

2018-09-24 18:10:16 +02:00
<?php
namespace Modules\Anagrafiche;
2018-09-25 16:47:44 +02:00
use Base\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');
}
}