*/ class MeetupFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { $name = fake()->company(); return [ 'name' => $name, 'slug' => \Illuminate\Support\Str::slug($name), 'github_data' => [], 'created_by' => \App\Models\User::factory(), ]; } }