/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $iva = Iva::find($id);
     if (is_null($iva)) {
         App::abort(404);
     }
     $iva->delete();
     return Redirect::route('iva.index')->with('delete', 'El I.V.A. ha sido eliminado correctamente.');
 }