Merge branch 'master' of github.com:akaunting/akaunting

This commit is contained in:
Cüneyt Şentürk
2023-08-24 12:21:25 +03:00
2 changed files with 7 additions and 2 deletions

View File

@ -14,4 +14,9 @@ class ModuleHistory extends Model
* @var array
*/
protected $fillable = ['company_id', 'module_id', 'version', 'description', 'created_from', 'created_by'];
public function module()
{
return $this->belongsTo('App\Models\Module\Module');
}
}