laravel compact() and ->with()

后端 未结 7 1437
梦谈多话
梦谈多话 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 07:56

    the best way for me :

        $data=[
    'var1'=>'something',
    'var2'=>'something',
    'var3'=>'something',
          ];
    return View::make('view',$data);
    

提交回复
热议问题