Files
Behzad Babaei 4a59afbf10 initial commit
2020-03-28 16:55:40 +04:30

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),
];
});