40 lines
955 B
PHP
40 lines
955 B
PHP
<?php
|
|
|
|
/** @noinspection PhpIllegalPsrClassPathInspection */
|
|
|
|
namespace App\Database\Factories;
|
|
|
|
use App\Contracts\Factory;
|
|
use App\Models\Enums\ExpenseType;
|
|
use App\Models\Expense;
|
|
|
|
class ExpenseFactory extends Factory
|
|
{
|
|
/**
|
|
* The name of the factory's corresponding model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $model = Expense::class;
|
|
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'id' => null,
|
|
'airline_id' => null,
|
|
'name' => $this->faker->text(20),
|
|
'amount' => $this->faker->randomFloat(2, 100, 1000),
|
|
'type' => ExpenseType::FLIGHT,
|
|
'multiplier' => false,
|
|
'ref_model' => \App\Models\Expense::class,
|
|
'ref_model_id' => null,
|
|
'active' => true,
|
|
];
|
|
}
|
|
}
|