/**
  * Remove the specified outlet from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $outlets = Outlet::where('retailer_id', $id)->get();
     Outlet::destroy($outlets);
     Retailer::destroy($id);
     return Redirect::route('admin.retailers.index');
 }