id)->get(); return($taxRates); } /** * Show the form for editing the specified resource. * * @param \App\Models\TaxRate $taxRate * @return \Illuminate\Http\Response */ public function edit(TaxRate $taxRate) { // } /** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param \App\Models\TaxRate $taxRate * @return \Illuminate\Http\Response */ public function update(Request $request, TaxRate $taxRate) { // } /** * Remove the specified resource from storage. * * @param \App\Models\TaxRate $taxRate * @return \Illuminate\Http\Response */ public function destroy(TaxRate $taxRate) { // } }