Skip to content

Instantly share code, notes, and snippets.

@sabid
Created July 21, 2014 06:35
Show Gist options
  • Save sabid/ffe43dbaeac7efa63177 to your computer and use it in GitHub Desktop.
Save sabid/ffe43dbaeac7efa63177 to your computer and use it in GitHub Desktop.
Laravel: Blade: Limit foreach loop
@foreach ($posts->slice(0, 5) as $post)
<h1>{{ $post['title'] }}</h1>
@endforeach
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment