HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
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>