*/ class MetaFactory extends Factory { protected $model = Meta::class; public function definition(): array { return [ 'key' => $this->faker->word(), 'value' => $this->faker->word(), ]; } }