mirror of
https://github.com/Karaka-Management/oms-Billing.git
synced 2026-01-24 21:38:42 +00:00
29 lines
799 B
PHP
29 lines
799 B
PHP
<?php
|
|
|
|
return [
|
|
'^.*/backend/sales/invoice/create.*$' => [
|
|
[
|
|
'dest' => '\Modules\Billing\Controller:viewBillingInvoiceCreate',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/sales/invoice/list.*$' => [
|
|
[
|
|
'dest' => '\Modules\Billing\Controller:viewBillingInvoiceList',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/purchase/invoice/create.*$' => [
|
|
[
|
|
'dest' => '\Modules\Billing\Controller:viewBillingPurchaseInvoiceCreate',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/purchase/invoice/list.*$' => [
|
|
[
|
|
'dest' => '\Modules\Billing\Controller:viewBillingPurchaInvoiceList',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
];
|