You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current PHP style syntax for a loop is ugly and verbose. If we could use @repeat instead of @for and pass an integer value of the number of times to loop, it would make our code more readable and slightly quicker to write
@repeat(10) The current value is {{ $loop->index }} @endrepeat
instead of
@for ($i = 0; $i < 10; $i++) The current value is {{ $i }} @endfor
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
The current PHP style syntax for a loop is ugly and verbose. If we could use @repeat instead of @for and pass an integer value of the number of times to loop, it would make our code more readable and slightly quicker to write
@repeat(10)
The current value is {{ $loop->index }}
@endrepeat
instead of
@for ($i = 0; $i < 10; $i++)
The current value is {{ $i }}
@endfor
Beta Was this translation helpful? Give feedback.
All reactions