mirror of
https://github.com/Karaka-Management/oms-HumanResourceManagement.git
synced 2026-01-18 15:18:40 +00:00
23 lines
599 B
PHP
23 lines
599 B
PHP
<?php
|
|
|
|
return [
|
|
'^.*/backend/hr/staff/list.*$' => [
|
|
[
|
|
'dest' => '\Modules\HumanResourceManagement\Controller:viewHrList',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/hr/staff/create.*$' => [
|
|
[
|
|
'dest' => '\Modules\HumanResourceManagement\Controller:viewHrCreate',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/hr/department/list.*$' => [
|
|
[
|
|
'dest' => '\Modules\HumanResourceManagement\Controller:viewHrDepartmentList',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
];
|