You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
436 B
16 lines
436 B
<?php
|
|
|
|
/** @var \Illuminate\Database\Eloquent\Factory $factory */
|
|
|
|
use App\Sprint;
|
|
use Faker\Generator as Faker;
|
|
|
|
$factory->define(Sprint::class, function (Faker $faker) {
|
|
return [
|
|
'business_id' => null,
|
|
'name' => $faker->randomElement(['scrum', 'printing',
|
|
'agile', 'develop', 'design', 'writing', 'seo', 'sale']),
|
|
'active' => rand(0, 1),
|
|
'description' => $faker->paragraph,
|
|
];
|
|
});
|