From 6091ef7dead820d9972a9cbf89561d7008e76f5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Mon, 4 Oct 2021 16:25:08 +0300 Subject: [PATCH] Fixed wizard Currencies and Taxes show method #1kanptr --- app/Http/Controllers/Wizard/Currencies.php | 10 ++++++++++ app/Http/Controllers/Wizard/Taxes.php | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/app/Http/Controllers/Wizard/Currencies.php b/app/Http/Controllers/Wizard/Currencies.php index 0e5f9f259..6b5eb4481 100644 --- a/app/Http/Controllers/Wizard/Currencies.php +++ b/app/Http/Controllers/Wizard/Currencies.php @@ -47,6 +47,16 @@ class Currencies extends Controller return $this->response('wizard.currencies.index', compact('currencies', 'codes')); } + /** + * Show the form for viewing the specified resource. + * + * @return Response + */ + public function show() + { + return redirect()->route('wizard.currencies.index'); + } + /** * Store a newly created resource in storage. * diff --git a/app/Http/Controllers/Wizard/Taxes.php b/app/Http/Controllers/Wizard/Taxes.php index 70d1722c1..80a81c4f5 100644 --- a/app/Http/Controllers/Wizard/Taxes.php +++ b/app/Http/Controllers/Wizard/Taxes.php @@ -35,6 +35,16 @@ class Taxes extends Controller return $this->response('wizard.taxes.index', compact('taxes')); } + /** + * Show the form for viewing the specified resource. + * + * @return Response + */ + public function show() + { + return redirect()->route('wizard.taxes.index'); + } + /** * Store a newly created resource in storage. *