engelsystem/db/factories/User/StateFactory.php

48 lines
1.3 KiB
PHP
Raw Normal View History

2021-06-29 00:27:57 +02:00
<?php
declare(strict_types=1);
2021-06-29 00:27:57 +02:00
namespace Database\Factories\Engelsystem\Models\User;
use Carbon\Carbon;
use Engelsystem\Models\User\State;
use Engelsystem\Models\User\User;
2021-06-29 00:27:57 +02:00
use Illuminate\Database\Eloquent\Factories\Factory;
class StateFactory extends Factory
{
/** @var string */
protected $model = State::class; // phpcs:ignore
2021-06-29 00:27:57 +02:00
public function definition(): array
2021-06-29 00:27:57 +02:00
{
$arrival = $this->faker->optional()->dateTimeThisMonth();
return [
'user_id' => User::factory(),
'arrived' => (bool) $arrival,
2021-06-29 00:27:57 +02:00
'arrival_date' => $arrival ? Carbon::instance($arrival) : null,
2023-11-16 21:27:23 +01:00
'user_info' => $this->faker->optional(.1)->text(),
2021-06-29 00:27:57 +02:00
'active' => $this->faker->boolean(.3),
'force_active' => $this->faker->boolean(.1),
2024-04-10 18:29:12 +02:00
'got_goodie' => $this->faker->boolean(),
2021-06-29 00:27:57 +02:00
'got_voucher' => $this->faker->numberBetween(0, 10),
];
}
/**
* Indicate that the user is arrived
*/
public function arrived(): self
2021-06-29 00:27:57 +02:00
{
return $this->state(
function (array $attributes) {
return [
'arrived' => true,
'arrival_date' => Carbon::instance($this->faker->dateTimeThisMonth()),
];
}
);
}
}