Laravel - Pass more than one variable to view

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

    Please try this,

    $ms = Person::where('name', 'Foo Bar')->first();
    $persons = Person::order_by('list_order', 'ASC')->get();
    return View::make('viewname')->with(compact('persons','ms'));
    

提交回复
热议问题