laravel compact() and ->with()

后端 未结 7 1455
梦谈多话
梦谈多话 2020-11-30 07:17

I have a piece of code and I\'m trying to find out why one variation works and the other doesn\'t.

return View::make(\'gameworlds.mygame\', compact(\'fixture         


        
7条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-30 08:20

    I was able to use

    return View::make('myviewfolder.myview', compact('view1','view2','view3'));
    

    I don't know if it's because I am using PHP 5.5 it works great :)

提交回复
热议问题