mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-07 06:33:57 -06:00
17 lines
443 B
PHP
17 lines
443 B
PHP
<?php
|
|
|
|
|
|
use Carbon\Carbon;
|
|
use League\FactoryMuffin\Facade;
|
|
|
|
Facade::define(
|
|
'TransactionJournal',
|
|
[
|
|
'transaction_type_id' => 'factory|TransactionType',
|
|
'transaction_currency_id' => 'factory|TransactionCurrency',
|
|
'description' => 'word',
|
|
'completed' => 'boolean',
|
|
'user_id' => 'factory|User',
|
|
'date' => new Carbon
|
|
]
|
|
); |