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/farmfun.komma.pro/resources/views/site/organisms/progress.blade.php
@php
    if(!isset($progressLabels)) $progressLabels = [
        __('site/checkout.booking.label'),
        __('site/checkout.data.label'),
        __('site/checkout.summary.label'),
        __('site/checkout.success.label'),
    ];
@endphp


<div class="o-progress">

    <ul class="o-progress__list">
        @foreach ($progressLabels as $progressLabel)
            <li class="o-progress__item @if($progressStatus == $loop->iteration && $progressStatus != $loop->count ) is-marked  is-active @endif @if($progressStatus > $loop->iteration || $progressStatus == $loop->count) is-marked  is-ready @endif">
                <span class="o-progress__label">{{ $progressLabel }}</span>
            </li>
        @endforeach
    </ul>

</div>