*/ class ReligionFactory extends Factory { protected $model = Religion::class; /** * Define the model's default state. * * @return array */ public function definition() { return [ 'account_id' => Account::factory(), 'name' => $this->faker->name(), 'translation_key' => $this->faker->word(), 'position' => 1, ]; } }