mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-02 05:29:12 -06:00
17 lines
246 B
PHP
17 lines
246 B
PHP
<?php
|
|
|
|
|
|
class TransactionCurrency extends Eloquent
|
|
{
|
|
|
|
public static $factory
|
|
= [
|
|
'code' => 'string'
|
|
];
|
|
|
|
public function transactionJournals()
|
|
{
|
|
return $this->hasMany('TransactionJournal');
|
|
}
|
|
|
|
}
|