Fixed wizard Currencies and Taxes show method #1kanptr

This commit is contained in:
Cüneyt Şentürk 2021-10-04 16:25:08 +03:00
parent 58d2fe145c
commit 6091ef7dea
2 changed files with 20 additions and 0 deletions

View File

@ -47,6 +47,16 @@ class Currencies extends Controller
return $this->response('wizard.currencies.index', compact('currencies', 'codes')); 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. * Store a newly created resource in storage.
* *

View File

@ -35,6 +35,16 @@ class Taxes extends Controller
return $this->response('wizard.taxes.index', compact('taxes')); 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. * Store a newly created resource in storage.
* *