Laravel @foreach Directive

We can use this directive to use the foreach loop on the blade side.

@foreach($users as $user)
    {{ $user->name }}
@endforeach
Comments

There are no comments, make the firs comment