mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-11 09:00:42 +01:00
17 lines
302 B
PHP
Executable File
17 lines
302 B
PHP
Executable File
<?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');
|
|
}
|
|
}
|