类别名称之间的连字符但是当我使用 foreach 重复名称时

Hyphen in between categories name but when i use foreach for repeat name

我使用 laravel 8 并且我想使用这个连字符 - 在类别名称之间但是当我使用 foreach 重复名称时。此连字符 - 在最终类别名称中重复出现。

   @foreach($category_tags as $category_tag)
    <a href="{{$category_tag->link}}">{{$category_tag->title}} </a> -
    @endforeach

我的控制器代码

    $category_tags = ChildCategory::where('parent', $category->id)->where('status', 1)->get();

category: book - shop - phone - test - tablet -

我想在平板电脑之后删除这个连字符 - 并查看

category: book - shop - phone - test - tablet

Laravel 在 foreach 中提供了帮助对象,其中一个名为 $loop->last 这将在这种情况下帮助您

@foreach($category_tags as $category_tag)
    <a href="{{$category_tag->link}}">{{$category_tag->title}} </a> 
    @if(!$loop->last) 
    -
    @endif
@endforeach

有关详细信息,请查看 docs