mirror of
https://github.com/Karaka-Management/oms-Billing.git
synced 2026-02-14 15:28:42 +00:00
Routes files
This commit is contained in:
parent
3f432fa284
commit
c99d499ea1
|
|
@ -1,3 +1,3 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$consoleRoutes = [];
|
$moduleRoutes = [];
|
||||||
|
|
@ -1,36 +1,28 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$httpRoutes = [
|
return [
|
||||||
'^.*/backend/sales/invoice/create.*$' => [
|
'^.*/backend/sales/invoice/create.*$' => [
|
||||||
[
|
[
|
||||||
'dest' => '\Modules\Billing\Controller:viewBillingInvoiceCreate',
|
'dest' => '\Modules\Billing\Controller:viewBillingInvoiceCreate',
|
||||||
'verb' => RouteVerb::GET,
|
'verb' => RouteVerb::GET,
|
||||||
'result' => ViewType::HTML,
|
|
||||||
'layout' => ViewLayout::MAIN,
|
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'^.*/backend/sales/invoice/list.*$' => [
|
'^.*/backend/sales/invoice/list.*$' => [
|
||||||
[
|
[
|
||||||
'dest' => '\Modules\Billing\Controller:viewBillingInvoiceList',
|
'dest' => '\Modules\Billing\Controller:viewBillingInvoiceList',
|
||||||
'verb' => RouteVerb::GET,
|
'verb' => RouteVerb::GET,
|
||||||
'result' => ViewType::HTML,
|
|
||||||
'layout' => ViewLayout::MAIN,
|
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'^.*/backend/purchase/invoice/create.*$' => [
|
'^.*/backend/purchase/invoice/create.*$' => [
|
||||||
[
|
[
|
||||||
'dest' => '\Modules\Billing\Controller:viewBillingPurchaseInvoiceCreate',
|
'dest' => '\Modules\Billing\Controller:viewBillingPurchaseInvoiceCreate',
|
||||||
'verb' => RouteVerb::GET,
|
'verb' => RouteVerb::GET,
|
||||||
'result' => ViewType::HTML,
|
|
||||||
'layout' => ViewLayout::MAIN,
|
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'^.*/backend/purchase/invoice/list.*$' => [
|
'^.*/backend/purchase/invoice/list.*$' => [
|
||||||
[
|
[
|
||||||
'dest' => '\Modules\Billing\Controller:viewBillingPurchaInvoiceList',
|
'dest' => '\Modules\Billing\Controller:viewBillingPurchaInvoiceList',
|
||||||
'verb' => RouteVerb::GET,
|
'verb' => RouteVerb::GET,
|
||||||
'result' => ViewType::HTML,
|
|
||||||
'layout' => ViewLayout::MAIN,
|
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$socketRoutes = [];
|
$moduleRoutes = [];
|
||||||
Loading…
Reference in New Issue
Block a user