Skip to content

Commit

Permalink
fixed routes
Browse files Browse the repository at this point in the history
  • Loading branch information
denisdulici committed Apr 16, 2021
1 parent 21a80af commit cfc8e86
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Routes/guest.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

Route::group([
'prefix' => 'portal',
'prefix' => '{company_id}/portal',
'middleware' => 'guest',
'namespace' => 'Modules\PaypalStandard\Http\Controllers'
], function () {
Expand Down
2 changes: 1 addition & 1 deletion Routes/portal.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

Route::group([
'prefix' => 'portal',
'prefix' => '{company_id}/portal',
'middleware' => 'portal',
'namespace' => 'Modules\PaypalStandard\Http\Controllers'
], function () {
Expand Down
2 changes: 1 addition & 1 deletion Routes/signed.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

Route::group([
'prefix' => 'signed',
'prefix' => '{company_id}/signed',
'middleware' => 'signed',
'namespace' => 'Modules\PaypalStandard\Http\Controllers'
], function () {
Expand Down

0 comments on commit cfc8e86

Please sign in to comment.