30 lines
559 B
PHP
30 lines
559 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Group;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class GroupFactory extends Factory
|
|
{
|
|
/**
|
|
* The name of the factory's corresponding model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $model = Group::class;
|
|
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function definition()
|
|
{
|
|
return [
|
|
'name' => $this->faker->words(5, true),
|
|
'nami_id' => $this->faker->randomNumber(),
|
|
];
|
|
}
|
|
}
|