Anna
0
Q:

laravel for loop

<div>
    @for ($i = 0; $i < $max; $i++) //Where $max is whatever you need as break condition.
        <p>{{ $i }}</p> //This would print $i in a paragraph. You do whatever you need here.
    @endfor
</div>
1
@for ($i = 0; $i < 10; $i++)
    The current value is {{ $i }}
@endfor

@foreach ($users as $user)
    <p>This is user {{ $user->id }}</p>
@endforeach

@forelse ($users as $user)
    <li>{{ $user->name }}</li>
@empty
    <p>No users</p>
@endforelse

@while (true)
    <p>I'm looping forever.</p>
@endwhile
2
<ul>
@foreach ($pages as $page)
    <li>{{ $loop->iteration }}: {{ $page->title }}
        @if ($page->hasChildren())
        <ul>
        @foreach ($page->children() as $child)
            <li>{{ $loop->parent->iteration }}.{{ $loop->iteration }}:
                {{ $child->title }}</li>
        @endforeach
        </ul>
        @endif
    </li>
@endforeach
</ul>
0
foreach ($users as $user) {
    // stuff here
}
0

New to Communities?

Join the community