File: D:/HostingSpaces/SBogers10/ijzerenman.komma.pro/app/views/layouts/partials/breadcrumb.blade.php
{{-- https://developers.google.com/structured-data/breadcrumbs#properties --}}
<div class="breadcrumb">
<ol itemscope itemtype="http://schema.org/BreadcrumbList">
@foreach($items as $key => $item)
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem" {{ $item->route == Route::current()->getUri() ? ' class="active"' : '' }}>
<a itemprop="item" href="/{{ $item->route }}">
<span itemprop="name">{{ $item->name }}</span></a>
<meta itemprop="position" content="{{ $key + 1 }}" />
@if($key != count($items)-1)
<span class="arrow">›</span>
@endif
</li>
@endforeach
</ol>
<div class="phone">
<a href="tel:0031736572093">073 - 657 20 93</a>
</div>
</div>