Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. $items = Item:where('count' , '>' , 5)->get();
  2.  
  3. $ids = [2 , 4 , 7 , 8];
  4.  
  5. @foreach($ids as $id)
  6. <a href="#" >
  7. {{ $items->where('id' ,$id)->first()->name }}
  8. </a>
  9. @endforeach
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement