/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $formatoEBan = FormatoEvidencia::find($id);
     $formatoEBan->delete();
     return redirect()->back()->with('ValidationDelete', 'Registro Seleccionado Fue Eliminado');
 }