라라벨 블레이드 @foreach 마지막 원소 처리

1 개요[ | ]

라라벨 블레이드 @foreach 마지막 원소 처리
{{-- $fruits = ['apple','cranberry','banana','cranberry'] --}}
<?php end($fruits); $last_key=key($fruits); ?>
@foreach( $fruits as $k => $fruit )
  {{ $fruit }}{{ ($k != $last_key)?', ':''}}
@endforeach
{{-- shows 'apple, cranberry, banana, cranberry' --}}

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}