public function getTicketAllAttachments($id)
 {
     $ticket = new Ticket();
     $attachments = $ticket->getCommentsAttachment($id);
     return response(['data' => $attachments], 200);
 }