define(State::class, function (Faker\Generator $faker) { $country = factory(Country::class)->create(); return [ 'state' => $faker->city, 'state_code' => $faker->word, 'country_id' => $country->id ]; });