Mage2\TaxClass\Controllers\Admin\TaxClassController::edit PHP Method

edit() public method

Show the form for editing the specified resource.
public edit ( integer $id ) : Illuminate\Http\Response
$id integer
return Illuminate\Http\Response
    public function edit($id)
    {
        $taxClass = TaxClass::findorfail($id);
        return view('admin.tax-class.edit')->with('taxClass', $taxClass);
    }