There is one element I want to show only once inside this foreach loop. I was wondering if this was possible or if I would need to change my html/css structure for it with Laravel. I only want to show the icon here once.
example.blade.php :
@foreach ($items as $item)
<p>
{{ $item }}
<i class="fa fa-times><!-- this only once --></i>
</p>
@endforeach