File: D:/HostingSpaces/Eurotools/euro-tools.nl/resources/views/site/partials/breadcrumb.blade.php
<div class="breadcrumb">
<ol itemscope itemtype="http://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="/"><span itemprop="name">{{\Config::get('business.company_name')}}</span></a>
<meta itemprop="position" content="1"/>
</li>
@foreach($bread as $key => $crumb)
<span class="seperator"> > </span>
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="{{$crumb['url_part']}}">
<span itemprop="name">
{{ ucfirst( $crumb['text'] ) }}
</span>
</a>
<meta itemprop="position" content="{{ $key + 2 }}"/>
</li>
@endforeach
</ol>
</div>