/**
  * Remove the specified resource from storage.
  * DELETE /tax_rates/{id}
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     TaxRate::destroy($id);
     return Redirect::route('tax_rates.index');
 }