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
$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));