mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-21 22:13:11 -06:00
11 lines
367 B
PHP
11 lines
367 B
PHP
<?php
|
|
|
|
League\FactoryMuffin\Facade::define(
|
|
'Transaction', [
|
|
'account_id' => 'factory|Account',
|
|
'transaction_journal_id' => 'factory|TransactionJournal',
|
|
'description' => 'sentence',
|
|
'amount' => 'numberBetween:1,100',
|
|
]
|
|
);
|