| Current File : /var/www/orientalss.com/config/laratrust_seeder.php |
<?php
return [
/**
* Control if the seeder should create a user per role while seeding the data.
*/
'create_users' => true,
/**
* Control if all the laratrust tables should be truncated before running the seeder.
*/
'truncate_tables' => true,
'roles_structure' => [
'superadmin' => [],
'admin' => [],
'hr' => [],
'finance' => [],
],
'permissions_map' => [
'c' => 'create',
'r' => 'read',
'u' => 'update',
'd' => 'delete'
]
];