/** * Remove the specified resource from storage. * * @param int $id * @return Response */ public function destroy($rating_id) { $result = Like::deleteLike($rating_id); return Response::json($result); }