mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-22 22:43:20 -06: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',
|
||
|
]
|
||
|
);
|