/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy(services $services)
 {
     $services->delete();
     return Redirect::route('services.index')->with('message', 'Service deleted.');
 }