123456789101112131415161718192021222324252627 |
- <?php
- use App\Shop\Countries\Country;
- use App\Shop\States\State;
- $factory->define(State::class, function (Faker\Generator $faker) {
- $country = factory(Country::class)->create();
- return [
- 'state' => $faker->city,
- 'state_code' => $faker->word,
- 'country_id' => $country->id
- ];
- });
|