mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 02:26:58 +00:00
15 lines
349 B
PHP
15 lines
349 B
PHP
![]() |
<?php
|
||
|
|
||
|
|
||
|
use League\FactoryMuffin\Facade;
|
||
|
|
||
|
Facade::define(
|
||
|
'Transaction',
|
||
|
[
|
||
|
'account_id' => 'factory|Account',
|
||
|
'piggybank_id' => null,
|
||
|
'transaction_journal_id' => 'factory|TransactionJournal',
|
||
|
'description' => 'string',
|
||
|
'amount' => 'integer:5',
|
||
|
]
|
||
|
);
|