mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-03 12:47:17 -06: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');
|
|
}
|
|
|
|
}
|