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