mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-24 06:30:20 +01:00
16 lines
238 B
PHP
Executable File
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');
|
|
}
|
|
}
|