Route File:- Route::get('/',function(){
$menuitem = Menuitem::all(); return VIEW::make('index',$menuitem); } )
index.blade.php:-
@foreach($menuitem as $item) {{$item['item_link']}} @endforeach
I am getting an error "Undefined variable $menuitem" in index.blade.php.
Someone Please help to solve this out.
Try
VIEW::make('index',array('menuitem'=>$menuitem));
Or
VIEW::make('index')->with('menuitem', $menuitem);
Also
VIEW::make('index',compact('menuitem'));
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community