Guest User

Untitled

a guest
Jan 14th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. return view('pages.menu')->with([
  2. 'someList' => $this->someList
  3. ]);
  4.  
  5. @foreach($someList as $item)
  6. @include('item.line', [
  7. 'itemName' => $item->name,
  8. 'itemValue' => $item->itemValue
  9. ])
  10. @endforeach
Add Comment
Please, Sign In to add comment