Laravel - Views and Blade Templates
Given the Blade loop:
@foreach($items as $item)
{{ $item }}
@endforeach
If $items = ['a', 'b', 'c'], what is the rendered output?