Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!

Learn from Guru Rajesh Kumar and double your salary in just one year.



Get Started Now!

Example of Laravel Blade forEach Last Element

Laravel

Some of the most significant examples of a Laravel foreach loop last will be provided in this article. Here is a basic illustration of a Laravel foreach loop last. Every last element of the Lavel Blade will be taught to you. The following example will assist you in crafting each final item. Now let’s get started with the steps.

A @foreach loop is provided by Laravel Blade to render array data. To ascertain if an element is the initial or final one and apply a class or other actions correspondingly, you can make use of $loop->first and $loop->last.I’ll walk you through some basic examples of how to use $loop->first and $loop->last in your blade file.

Example 1 in blade page

@foreach ($users as $user)
    @if ($loop->first)
        This is the first item.
    @endif
  
    @if ($loop->last)
        This is the last item.
    @endif
  
    <p>This is user {{ $user->name }}</p>
@endforeach

Example 2:

<ul>
@foreach ($users as $user)
  <li @if ($loop->first) class="active" @endif>
    {{ $user->name }}
  </li>
@endforeach
</ul>

Example 3:

<ul>
@foreach ($users as $user)
  <li @if ($loop->last) class="active" @endif>
    {{ $user->name }}
  </li>
@endforeach
</ul>
0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x