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/statsRow.blade.php
<div class="o-stats">
    <div class="o-stats__main">
        <div class="o-stats__content">
            <div class="o-stats__content-wrapper">

                <div class="o-product__costs">
                    <p class="o-product__price" data-currency="{{ config('site.shop_currency') }}">{!! $availability->getPriceLabel()  !!}</p>
                    <p class="o-product__price-line">{!! $availability->getPosterLabel()  !!}</p>
                    <p class="o-product__subprice">excl. BTW {{ $availability->getPriceLabel(false) }}</p>
                </div>

                <div class="o-product__spec">
                    @include('site.components.spec', [
                        'specs' => [
                            'Min. personen' => $product->minimum_amount_of_persons,
                            'Duur' => $availability->getDurationLabel()
                        ]
                    ])
                </div>

                @if(isset($product->required_age) && $product->required_age != 0)
                    <div class="o-product__note">
                        @include('site.components.note', [
                            'noteContent' => __('site/availability.age_notification', ['age' => $product->required_age])
                        ])
                    </div>
                @endif

                @if(!empty($product->translation->notification))
                    <div class="o-product__note">
                        @include('site.components.note', [
                            'noteContent' => $product->translation->notification,
                        ])
                    </div>
                @endif

            </div>
        </div>
        <div class="o-stats__info">
            <ul class="o-stats__list">
                @foreach($product->getStats() as $statKey => $statValue)
                    <li class="o-stats__item">
                        @include('site.components.stat', ['stars' => $statValue])
                    </li>
                @endforeach
            </ul>
        </div>
    </div>
</div>