mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 11:20:39 -06:00
13 lines
447 B
PHP
13 lines
447 B
PHP
<?php
|
|
|
|
League\FactoryMuffin\Facade::define(
|
|
'Transaction', [
|
|
'account_id' => 'factory|Account',
|
|
'transaction_journal_id' => 'factory|TransactionJournal',
|
|
'description' => 'sentence',
|
|
'amount' => function () {
|
|
return round(rand(100, 10000) / 100, 2);
|
|
}
|
|
]
|
|
);
|