29 lines
623 B
PHP
29 lines
623 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
use Illuminate\Support\Str;
|
|
|
|
/**
|
|
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Model>
|
|
*/
|
|
class ExpenseFactory extends Factory
|
|
{
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'id_user' => 1,
|
|
'id_type_expenses' => 1,
|
|
'amount' => fake()->randomFloat(),
|
|
'description' => Str::random(90),
|
|
'date' => fake()->date(),
|
|
];
|
|
}
|
|
}
|