1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-09 08:08:39 +01:00

21 lines
317 B
PHP
Raw Normal View History

2018-11-30 15:45:43 +01:00
<?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');
}
}