File: D:/HostingSpaces/SBogers10/komma.pro/resources/views/site/partials/breadcrumb.blade.php
<ol class="breadcrumb" itemscope itemtype="http://schema.org/BreadcrumbList">
{{-- Start with the home page--}}
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="/">
<span itemprop="name">Home</span>
</a>
<meta itemprop="position" content="1" />
</li>
@if(isset($crumbs))
{{-- Add the rest of the crumbs --}}
@foreach($crumbs as $key => $crumb)
<li @if($key == count($crumbs)-1) class="active" @endif itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="{{ $crumb['path'] }}">
<span itemprop="name">{{ $crumb['label'] }}</span>
</a>
{{-- First key is 0, so add 2 to start at content 2 --}}
<meta itemprop="position" content="{{ ($key+2) }}" />
</li>
@endforeach
@endif
</ol>