[ [ 'dest' => '\Modules\Purchase\Controller\BackendController:viewPurchaseInvoiceCreate', 'verb' => RouteVerb::GET, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::CREATE, 'state' => PermissionCategory::INVOICE, ], ], ], '^.*/purchase/invoice/list.*$' => [ [ 'dest' => '\Modules\Purchase\Controller\BackendController:viewPurchaseInvoiceList', 'verb' => RouteVerb::GET, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::READ, 'state' => PermissionCategory::INVOICE, ], ], ], '^.*/purchase/article/list.*$' => [ [ 'dest' => '\Modules\Purchase\Controller\BackendController:viewPurchaseArticleList', 'verb' => RouteVerb::GET, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::READ, 'state' => PermissionCategory::ARTICLE, ], ], ], '^.*/purchase/article/create.*$' => [ [ 'dest' => '\Modules\Purchase\Controller\BackendController:viewPurchaseArticleCreate', 'verb' => RouteVerb::GET, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::CREATE, 'state' => PermissionCategory::ARTICLE, ], ], ], '^.*/purchase/article/profile.*$' => [ [ 'dest' => '\Modules\Purchase\Controller\BackendController:viewPurchaseArticleProfile', 'verb' => RouteVerb::GET, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::READ, 'state' => PermissionCategory::ARTICLE, ], ], ], '^.*/purchase/order/suggestion.*$' => [ [ 'dest' => '\Modules\Purchase\Controller\BackendController:viewPurchaseOrderSuggestion', 'verb' => RouteVerb::GET, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::READ, 'state' => PermissionCategory::ARTICLE, ], ], ], ];