mirror of
https://gitlab.com/izyim/prototypes/lumen-microservices/microservice-products-api.git
synced 2026-08-19 12:24:17 +00:00
20 lines
579 B
PHP
20 lines
579 B
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Model Factories
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you may define all of your model factories. Model factories give
|
|
| you a convenient way to create models for testing and seeding your
|
|
| database. Just tell the factory how a default model should look.
|
|
|
|
|
*/
|
|
|
|
$factory->define(App\Product::class, function (Faker\Generator $faker) {
|
|
return [
|
|
'name' => $faker->userName,
|
|
'price' => $faker->numberBetween(10,200),
|
|
];
|
|
});
|