def create
    @ticket = Ticket.new(params[:ticket])
    if @ticket.save
      redirect_to @ticket, notice: t("flash.notice.successfully_created", class: t("tickets.ticket") )
    else