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