/**
  * Remove the specified resource from storage.
  *
  * @param  int  $shop_id
  * @return Response
  */
 public function destroy($shop_id)
 {
     $shop = Shop::destroy($shop_id);
     return \Response::json($shop);
 }