firefly-iii/app/models/Component.php

21 lines
325 B
PHP

<?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');
}
}