2022-03-06 01:53:15 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Database\Factories;
|
|
|
|
|
|
|
|
use App\Activity;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @extends Factory<Activity>
|
|
|
|
*/
|
|
|
|
class ActivityFactory extends Factory
|
|
|
|
{
|
|
|
|
protected $model = Activity::class;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the model's default state.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function definition()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'name' => $this->faker->words(5, true),
|
|
|
|
'nami_id' => $this->faker->randomNumber(),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function inNami(int $namiId): self
|
|
|
|
{
|
|
|
|
return $this->state(['nami_id' => $namiId]);
|
|
|
|
}
|
2022-11-16 16:30:23 +01:00
|
|
|
|
|
|
|
public function name(string $name): self
|
|
|
|
{
|
|
|
|
return $this->state(['name' => $name]);
|
|
|
|
}
|
2022-03-06 01:53:15 +01:00
|
|
|
}
|