File: D:/HostingSpaces/SBogers10/umans.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="/@if( \Config::get('app.radepoActive')){{'home'}}@endif"><span itemprop="name">
@if( \Config::get('app.radepoActive'))
{{\Config::get('umans.business')}}
@else
{{\Config::get('umans.business_isolation')}}
@endif
</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 class="clear"></div>
</div>