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

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