Laravel - Pass more than one variable to view

前端 未结 11 1545
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-29 18:54

I have this site and one of its pages creates a simple list of people from the database. I need to add one specific person to a variable I can access.

How do I modif

11条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-29 19:40

        $oblast = Oblast::all();
        $category = Category::where('slug', $catName)->first();
        $availableProjects = $category->availableProjects;
        return view('pages.business-area')->with(array('category'=>$category, 'availableProjects'=>$availableProjects, 'oblast'=>$oblast));
    

提交回复
热议问题