mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-23 14:26:58 +00:00
17 lines
350 B
PHP
17 lines
350 B
PHP
![]() |
<?php
|
||
|
|
||
|
|
||
|
class TransactionJournal extends Eloquent {
|
||
|
|
||
|
public function transactionType() {
|
||
|
return $this->belongsTo('TransactionType');
|
||
|
}
|
||
|
public function transactionCurrency() {
|
||
|
return $this->belongsTo('TransactionCurrency');
|
||
|
}
|
||
|
|
||
|
public function transactions() {
|
||
|
return $this->hasMany('Transaction');
|
||
|
}
|
||
|
|
||
|
}
|