laravel blade for loop
// For
@for ($i = 0; $i < max_value; $i++)
//your code
@endfor
//Foreach
@foreach ($items as $item)
//your code
@endforeach
laravel blade for loop
// For
@for ($i = 0; $i < max_value; $i++)
//your code
@endfor
//Foreach
@foreach ($items as $item)
//your code
@endforeach
how to write for loop in laravel blade
<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>
laravel for loop
@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
forelse blade
public function index()
{
$products = Product::get();
return view('home',compact('products'));
}
<div class="card-header">
<h5>Laravel Check Array Empty in Blade </h5>
</div>
<div class="card-body">
@forelse ($products as $product)
<p class="bg-danger text-white p-1">product</p>
@empty
<p class="bg-danger text-white p-1">No product</p>
@endforelse
</div>
declare variable in view for loop laravel
@push('scripts')
<script src="/laravel.js"></script>
@endpush
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us