ProductAttributeModelFactory.php 656 B

12345678910111213141516171819202122
  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. use App\Shop\ProductAttributes\ProductAttribute;
  13. /** @var \Illuminate\Database\Eloquent\Factory $factory */
  14. $factory->define(ProductAttribute::class, function (Faker\Generator $faker) {
  15. return [
  16. 'quantity' => 1,
  17. 'price' => 1.55
  18. ];
  19. });