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
347 B
16 lines
347 B
<?php
|
|
|
|
/** @var Factory $factory */
|
|
|
|
use App\System;
|
|
use Faker\Generator as Faker;
|
|
use Illuminate\Database\Eloquent\Factory;
|
|
use Illuminate\Support\Str;
|
|
|
|
$factory->define(System::class, function (Faker $faker) {
|
|
return [
|
|
'business_id' => null,
|
|
'project_id' => null,
|
|
'name' => $name = $faker->words(3, true),
|
|
];
|
|
});
|