2024-02-07 10:18:46 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Database\Factories;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
|
|
|
|
class EducationalInstitutionFactory extends Factory
|
|
|
|
{
|
|
|
|
public function definition(): array
|
|
|
|
{
|
|
|
|
return [
|
2024-02-12 14:55:17 +03:00
|
|
|
'name' => fake()->name(),
|
|
|
|
'description' => fake()->text(),
|
|
|
|
'slug' => fake()->slug(),
|
|
|
|
'position' => fake()->randomDigit(),
|
2024-02-07 10:18:46 +03:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|