mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-25 07:47:55 +01:00
16 lines
227 B
PHP
16 lines
227 B
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\Ordini;
|
||
|
|
||
|
use Common\Model;
|
||
|
|
||
|
class Tipo extends Model
|
||
|
{
|
||
|
protected $table = 'or_tipiordine';
|
||
|
|
||
|
public function fatture()
|
||
|
{
|
||
|
return $this->hasMany(Ordine::class, 'idtipoordine');
|
||
|
}
|
||
|
}
|