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