Schneider
Schneider

Reputation: 2496

Using Blade Laravel php template?

Is it need to use blade foreach like this

<!-- Blade foreach -->
@foreach ($users as $user)
 <div class="user">{{ $user->name }}</div>
@endforeach

Because blade PHP template is very similar to C# Razor, is ti possible to use foreach loop like this

<!-- Blade foreach -->
@foreach ($users as $user)
 <div class="user">{{ $user->name }}</div>

Does I must always end foreach like this @endforeach??

Upvotes: 1

Views: 320

Answers (1)

sidneydobber
sidneydobber

Reputation: 2910

Yes, Blade templating does not use indents to recognize the end of controle structures. Behind the scenes it will all be converted to regular PHP. It is just a more convenient and cleaner way to write your views. That is why a {{ $var }} outputs the following <?php echo $var;?>.

Upvotes: 3

Related Questions