mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/tickme.git
synced 2026-08-19 04:23:56 +00:00
16 lines
345 B
PHP
16 lines
345 B
PHP
<?php
|
|
|
|
/** @var \Illuminate\Database\Eloquent\Factory $factory */
|
|
|
|
use Faker\Generator as Faker;
|
|
|
|
$factory->define(App\Models\MilestoneTask::class, function (Faker $faker) {
|
|
|
|
return [
|
|
'milestone_id' => $faker->word,
|
|
'type_id' => $faker->word,
|
|
'title' => $faker->word,
|
|
'description' => $faker->word
|
|
];
|
|
});
|