File: D:/HostingSpaces/SBogers10/signmania.komma.pro/app/views/layouts/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.name')}}</span></a>
<meta itemprop="position" content="1"/>
</li>
@foreach($bread as $key => $crumb)
<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>