Laravel blade for loop example; In this tutorial, you will learn how to use the for-loop in laravel blade file. As a fresher, we need to add for loop in laravel blade file.
The loop is used to execute a statement or a block of statements, multiple times until and unless a specific condition is met. Let’s see the below example for how to set value in for-loop on laravel blade.
Syntax:
for (initialization expression; test condition; update expression) {
// code to be executed
}
Example:
<!DOCTYPE html>
<html>
<head>
<title>Laravel Blade For Loop Example </title>
</head>
<body>
@for ($i = 0; $i < 6; $i++)
<p>The value is {{ $i }}.</p>
@endfor
</body>
</html>
Output :
The value is 1. The value is 2. The value is 3. The value is 4. The value is 5.
Hope you understand the for loop in laravel blade file.