First commit for filter by category
This commit is contained in:
committed by
Paula Quispe
parent
7b96da5bc5
commit
a874ab2390
14
database/factories/ProcessCategoryFactory.php
Normal file
14
database/factories/ProcessCategoryFactory.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
/**
|
||||
* Model factory for a process category
|
||||
*/
|
||||
use Faker\Generator as Faker;
|
||||
|
||||
$factory->define(\ProcessMaker\Model\ProcessCategory::class, function (Faker $faker) {
|
||||
return [
|
||||
'CATEGORY_UID' => G::generateUniqueID(),
|
||||
'CATEGORY_PARENT' => '',
|
||||
'CATEGORY_NAME' => $faker->paragraph(3),
|
||||
'CATEGORY_ICON' => '',
|
||||
];
|
||||
});
|
||||
Reference in New Issue
Block a user