28 lines
663 B
PHP
28 lines
663 B
PHP
|
<?php
|
||
|
|
||
|
namespace Database\Factories\Engelsystem\Models;
|
||
|
|
||
|
use Engelsystem\Models\User\User;
|
||
|
use Engelsystem\Models\Worklog;
|
||
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
||
|
|
||
|
class WorklogFactory extends Factory
|
||
|
{
|
||
|
/** @var string */
|
||
|
protected $model = Worklog::class;
|
||
|
|
||
|
/**
|
||
|
* @return array
|
||
|
*/
|
||
|
public function definition()
|
||
|
{
|
||
|
return [
|
||
|
'user_id' => User::factory(),
|
||
|
'creator_id' => User::factory(),
|
||
|
'hours' => $this->faker->randomFloat(2, 0.01, 10),
|
||
|
'comment' => $this->faker->text(30),
|
||
|
'worked_at' => $this->faker->dateTimeThisMonth(),
|
||
|
];
|
||
|
}
|
||
|
}
|