mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-15 19:09:50 +00:00
15 lines
337 B
PHP
15 lines
337 B
PHP
<?php
|
|
|
|
/** @var \Illuminate\Database\Eloquent\Factory $factory */
|
|
|
|
use Faker\Generator as Faker;
|
|
use FireflyIII\Models\Transaction;
|
|
|
|
$factory->define(Transaction::class, function (Faker $faker) {
|
|
return [
|
|
'transaction_journal_id' => 0,
|
|
'account_id' => 0,
|
|
'amount' => 5,
|
|
];
|
|
});
|