firefly-iii/app/models/Component.php

21 lines
325 B
PHP
Raw Normal View History

<?php
class Component extends Eloquent
{
public function componentType()
{
return $this->belongsTo('ComponentType');
}
public function transactions()
{
return $this->belongsToMany('Transaction');
}
public function user()
{
return $this->belongsTo('User');
}
}