mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-22 06:17:45 +01:00
17 lines
302 B
PHP
17 lines
302 B
PHP
<?php
|
|
|
|
namespace Modules\RitenuteContributi;
|
|
|
|
use Common\Model;
|
|
use Modules\Fatture\Fattura;
|
|
|
|
class RitenutaContributi extends Model
|
|
{
|
|
protected $table = 'co_ritenuta_contributi';
|
|
|
|
public function fatture()
|
|
{
|
|
return $this->hasMany(Fattura::class, 'id_ritenuta_contributi');
|
|
}
|
|
}
|