The "this" in the two lines of this DailyMealFragment is having error. How could I change the "this" so that it could run in this DailyMealFragment
private fun loadRecyclerViewItems() {
        val linearLayoutManager = LinearLayoutManager(this)
        binding.itemsRv.layoutManager = linearLayoutManager
        val itemList:ArrayList<RestaurantsModels> = ArrayList()
        for (i in titles.indices){
            val model = RestaurantsModels(titles[i], descriptions[i], images[i])
            itemList.add(model)
        }
        val adapterItem = RestaurantsAdapter(this, itemList)
        binding.itemsRv.adapter = adapterItem
    }
 
    