Exemplo n.º 1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     ProductsOptions::where('products_options_id', '=', $id)->delete();
     return $this->response(array('statusCode' => 100, 'statusDescription' => 'Success', 'message' => "Product Option Deleted Successfully"));
 }