aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/sprinkles/account/factories/Permissions.php
blob: 591f5fdf486c8206bf6529dbc2b111b29e755113 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
/**
 * UserFrosting (http://www.userfrosting.com)
 *
 * @link      https://github.com/userfrosting/UserFrosting
 * @license   https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
 */

use League\FactoryMuffin\Faker\Facade as Faker;

/**
 * General factory for the Permission Model
 */
$fm->define('UserFrosting\Sprinkle\Account\Database\Models\Permission')->setDefinitions([
    'slug' => Faker::word(),
    'name' => Faker::word(),
    'description' => Faker::paragraph(),
    'conditions' => Faker::word()
]);