Skip to content

Commit ac7788a

Browse files
committed
fixed routes
1 parent 09bd63c commit ac7788a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Routes/admin.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?php
22

33
Route::group([
4+
'prefix' => '{company_id}',
45
'middleware' => 'admin',
56
'namespace' => 'Modules\OfflinePayments\Http\Controllers'
67
], function () {

Routes/portal.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
Route::group([
4-
'prefix' => 'portal',
4+
'prefix' => '{company_id}/portal',
55
'middleware' => 'portal',
66
'namespace' => 'Modules\OfflinePayments\Http\Controllers'
77
], function () {

Routes/signed.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
Route::group([
4-
'prefix' => 'signed',
4+
'prefix' => '{company_id}/signed',
55
'middleware' => 'signed',
66
'namespace' => 'Modules\OfflinePayments\Http\Controllers'
77
], function () {

0 commit comments

Comments
 (0)