mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-02 17:07:01 +01:00
16 lines
238 B
PHP
16 lines
238 B
PHP
<?php
|
|
|
|
namespace Modules\Fatture;
|
|
|
|
use Common\Model;
|
|
|
|
class Stato extends Model
|
|
{
|
|
protected $table = 'co_statidocumento';
|
|
|
|
public function fatture()
|
|
{
|
|
return $this->hasMany(Fattura::class, 'idstatodocumento');
|
|
}
|
|
}
|