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.

14 lines
284 B

  1. <?php
  2. /** @var Factory $factory */
  3. use App\Models\System;
  4. use Faker\Generator as Faker;
  5. $factory->define(System::class, function (Faker $faker) {
  6. return [
  7. 'business_id' => null,
  8. 'project_id' => null,
  9. 'name' => $name = $faker->words(3, true),
  10. ];
  11. });