2018-03-03 07:48:36 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use App\Models\Enums\ExpenseType;
|
|
|
|
use Faker\Generator as Faker;
|
|
|
|
|
|
|
|
$factory->define(App\Models\Expense::class, function (Faker $faker) {
|
|
|
|
return [
|
2018-03-20 09:50:40 +08:00
|
|
|
'id' => null,
|
|
|
|
'airline_id' => null,
|
|
|
|
'name' => $faker->text(20),
|
|
|
|
'amount' => $faker->randomFloat(2, 100, 1000),
|
|
|
|
'type' => ExpenseType::FLIGHT,
|
|
|
|
'multiplier' => false,
|
2018-04-02 03:32:01 +08:00
|
|
|
'ref_model' => \App\Models\Expense::class,
|
|
|
|
'ref_model_id' => null,
|
2018-03-20 09:50:40 +08:00
|
|
|
'active' => true,
|
2018-03-03 07:48:36 +08:00
|
|
|
];
|
|
|
|
});
|