From 62cedc62a43b5d1616a84384c4acf6b5abf5e2be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Mon, 8 Nov 2021 14:23:11 +0300 Subject: [PATCH] Fixed modules home page shoe method #1qeb87n --- app/Http/Controllers/Modules/Home.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/app/Http/Controllers/Modules/Home.php b/app/Http/Controllers/Modules/Home.php index 358f0c4ca..7c684461c 100644 --- a/app/Http/Controllers/Modules/Home.php +++ b/app/Http/Controllers/Modules/Home.php @@ -31,4 +31,14 @@ class Home extends Controller return $this->response('modules.home.index', compact('pre_sale', 'paid', 'new', 'free', 'installed')); } + + /** + * Show the form for viewing the specified resource. + * + * @return Response + */ + public function show() + { + return redirect()->route('apps.home.index'); + } }