Skip to content

Commit cfc8e86

Browse files
committed
fixed routes
1 parent 21a80af commit cfc8e86

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Routes/guest.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' => 'guest',
66
'namespace' => 'Modules\PaypalStandard\Http\Controllers'
77
], 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\PaypalStandard\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\PaypalStandard\Http\Controllers'
77
], function () {

0 commit comments

Comments
 (0)