We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09bd63c commit ac7788aCopy full SHA for ac7788a
Routes/admin.php
@@ -1,6 +1,7 @@
1
<?php
2
3
Route::group([
4
+ 'prefix' => '{company_id}',
5
'middleware' => 'admin',
6
'namespace' => 'Modules\OfflinePayments\Http\Controllers'
7
], function () {
Routes/portal.php
@@ -1,7 +1,7 @@
- 'prefix' => 'portal',
+ 'prefix' => '{company_id}/portal',
'middleware' => 'portal',
Routes/signed.php
- 'prefix' => 'signed',
+ 'prefix' => '{company_id}/signed',
'middleware' => 'signed',
0 commit comments