File: D:/HostingSpaces/SBogers10/werkenbijanvil.komma.nl/resources/views/components/breadcrumb.blade.php
<nav class="c-breadcrumb" role="navigation" aria-label="Breadcrumb">
<ol class="c-breadcrumb__list">
@foreach($breadcrumbList as $crumb)
<li class="c-breadcrumb__item @if($loop->last) c-breadcrumb__item--last @endif">
<i class="c-breadcrumb__icon" hidden>@include('components.icons.arrowhead')</i>
{{--
To Customize a breadcrumb items name, add the desired segment to the translations file of the breadcrumb.
See line 94:103 of the BreadcrumbComposer how this works.
--}}
@if(!isset($breadcrumbNameOverule) || !isset($breadcrumbNameOverule[$loop->iteration]))
<a class="c-breadcrumb__link" href="{{$crumb->route}}">{{ $crumb->name }}</a>
@else
<a class="c-breadcrumb__link" href="{{$crumb->route}}">{{ $breadcrumbNameOverule[$loop->iteration] }}</a>
@endif
</li>
@break(isset($stopAfterSegment) && $loop->iteration == $stopAfterSegment)
@endforeach
</ol>
</nav>