OrderStatusModelFactory.php 662 B

1234567891011121314151617181920212223
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | Model Factories
  5. |--------------------------------------------------------------------------
  6. |
  7. | Here you may define all of your model factories. Model factories give
  8. | you a convenient way to create models for testing and seeding your
  9. | database. Just tell the factory how a default model should look.
  10. |
  11. */
  12. /** @var \Illuminate\Database\Eloquent\Factory $factory */
  13. use App\Shop\OrderStatuses\OrderStatus;
  14. $factory->define(OrderStatus::class, function (Faker\Generator $faker) {
  15. return [
  16. 'name' => $faker->word,
  17. 'color' => $faker->hexColor
  18. ];
  19. });