Exemplo n.º 1
0
 public function destroy($id)
 {
     try {
         $this->questionService->removeFolder($id);
     } catch (QuestionServiceException $e) {
         return Response::json(['all' => $e->getMessage()], 500);
     }
     return Response::json([], 200, [], JSON_NUMERIC_CHECK);
 }