Fixed wizard Currencies and Taxes show method #1kanptr
This commit is contained in:
parent
58d2fe145c
commit
6091ef7dea
@ -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.
|
||||||
*
|
*
|
||||||
|
@ -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.
|
||||||
*
|
*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user