Skip to content

Instantly share code, notes, and snippets.

@ericlbarnes
Last active July 13, 2023 07:51
Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save ericlbarnes/5771365 to your computer and use it in GitHub Desktop.
Save ericlbarnes/5771365 to your computer and use it in GitHub Desktop.
Limit a foreach with Laravel blade
@foreach (array_slice($posts->toArray(), 0, 5) as $post)
<h1>{{ $post['title'] }}</h1>
@endforeach
@ron4stoppable
Copy link

 @foreach ($posts->take(5) as $post)
    <h1>{{ $post->title }}</h1>
 @endforeach

is much cleaner, and works great

@powolnymarcel
Copy link

Yes sir ;) @ron4stoppable

@abubakar-iqbal
Copy link

@foreach($skills->user->take(5) as $user)
this one is great

@sajed5208
Copy link

sajed5208 commented Sep 21, 2017

@foreach ($products->take(5) as $product)

{{ $product->product_name}}


@Endforeach

@HninEiEaindray
Copy link

@foreach (array_slice($data, 0, 4) as $content)

@ezewer
Copy link

ezewer commented Mar 27, 2018

thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment