mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-09 08:08:39 +01:00
21 lines
317 B
PHP
21 lines
317 B
PHP
|
<?php
|
||
|
|
||
|
namespace Models;
|
||
|
|
||
|
use Common\Model;
|
||
|
|
||
|
class Upload extends Model
|
||
|
{
|
||
|
protected $table = 'zz_files';
|
||
|
|
||
|
public function module()
|
||
|
{
|
||
|
return $this->belongsTo(Module::class, 'id_module');
|
||
|
}
|
||
|
|
||
|
public function plugin()
|
||
|
{
|
||
|
return $this->belongsTo(Plugin::class, 'id_plugin');
|
||
|
}
|
||
|
}
|