Support the ongoing development of Laravel.io →
Database Views

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.

Last updated 2 years ago.
0

Try

VIEW::make('index',array('menuitem'=>$menuitem));

Or

VIEW::make('index')->with('menuitem', $menuitem);

Also

VIEW::make('index',compact('menuitem'));
Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Pulkit29 pulkit29 Joined 23 Apr 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.