FIX t2t->e2e transfer issues

This commit is contained in:
E98Developer 2026-05-26 21:20:26 +02:00
parent 12ae3f3597
commit 9b8ecee296
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ public function index()
]
return $error;
*/
throw new \Exception('test');
// throw new \Exception('test');
return view('admin.productGroup.index');
}

View File

@ -18,7 +18,7 @@ public function show(string $path = ''): View|RedirectResponse
: route('dashboard.index');
return view('layout.core', [
'site' => env('APP_STAGE', 'DEV'),
'site' => config('app.stage', 'DEV'),
'initialUrl' => $targetUrl,
]);
}