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.
 
 

15 lines
410 B

<?php
/** @var \Illuminate\Database\Eloquent\Factory $factory */
use App\Workflow;
use Faker\Generator as Faker;
$factory->define(Workflow::class, function (Faker $faker) {
return [
'business_id' => null,
'name' => $faker->randomElement(['scrum', 'printing',
'agile', 'develop', 'design', 'writing', 'seo', 'sale']),
'desc' => $faker->sentences(1, true),
];
});