Laravel blade - Remove the last comma from array

David Carr

1 min read - 24th Dec, 2017

Using the $loop variable ( The new $loop variable in Laravel 5.3 ) inside of a loop it’s easy to check when you're at the start or the end of a loop. In this case show a comma for all items except the last one we can use:

! $loop->last

Which says then the loop is not the last item, at which points add the comma and close it with an endif.

@foreach($items as $item)

    {{ $item }}@if (!$loop->last),@endif

@endforeach

 

0 comments
Add a comment

Copyright © 2006 - 2024 DC Blog - All rights reserved.