[ [ 'dest' => '\Modules\HumanResourceManagement\Controller\BackendController:viewHrStaffList', 'verb' => RouteVerb::GET, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::READ, 'state' => PermissionCategory::HR, ], ], ], '^.*/humanresource/staff/view(\?.*$|$)' => [ [ 'dest' => '\Modules\HumanResourceManagement\Controller\BackendController:viewHrStaffView', 'verb' => RouteVerb::GET, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::READ, 'state' => PermissionCategory::HR, ], ], ], '^.*/humanresource/staff/create(\?.*$|$)' => [ [ 'dest' => '\Modules\HumanResourceManagement\Controller\BackendController:viewHrStaffCreate', 'verb' => RouteVerb::GET, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::CREATE, 'state' => PermissionCategory::HR, ], ], ], '^.*/humanresource/department/list(\?.*$|$)' => [ [ 'dest' => '\Modules\HumanResourceManagement\Controller\BackendController:viewHrDepartmentList', 'verb' => RouteVerb::GET, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::READ, 'state' => PermissionCategory::DEPARTMENT, ], ], ], '^.*/humanresource/position/list(\?.*$|$)' => [ [ 'dest' => '\Modules\HumanResourceManagement\Controller\BackendController:viewHrPositionList', 'verb' => RouteVerb::GET, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::READ, 'state' => PermissionCategory::POSITION, ], ], ], '^.*/humanresource/position/create(\?.*$|$)' => [ [ 'dest' => '\Modules\HumanResourceManagement\Controller\BackendController:viewHrPositionCreate', 'verb' => RouteVerb::GET, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::CREATE, 'state' => PermissionCategory::POSITION, ], ], ], ];