We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d58c7b commit 986c6a0Copy full SHA for 986c6a0
1 file changed
src/PanicHDServiceProvider.php
@@ -307,15 +307,13 @@ public function boot()
307
}
308
309
} else{
310
- Route::get('/tickets', function () {
+ Route::get('/tickets/{params?}', function () {
311
return redirect()->route('panichd.install.index');
312
- });
313
- Route::get('/tickets/{menu}', function () {
314
- return redirect()->route('panichd.install.index');
315
316
- Route::get('/panichd/{menu}', function () {
+ })->where('params', '(.*)');
+
+ Route::get('/panichd/{menu?}', function () {
317
318
+ })->where('menu', '(.*)');
319
320
321
0 commit comments