First commit for filter by category

This commit is contained in:
Julio Cesar Laura Avendaño
2019-05-02 12:46:53 -04:00
committed by Paula Quispe
parent 7b96da5bc5
commit a874ab2390
4 changed files with 61 additions and 3 deletions

View 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' => '',
];
});