Laravel - Pass more than one variable to view

前端 未结 11 1593
爱一瞬间的悲伤
爱一瞬间的悲伤 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:18

    Use compact

    function view($view)
    {
        $ms = Person::where('name', '=', 'Foo Bar')->first();
    
        $persons = Person::order_by('list_order', 'ASC')->get();
        return View::make('users', compact('ms','persons'));
    }
    

提交回复
热议问题