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/components/rating.blade.php
<a class="c-rating @modifiers('c-rating')" target="_blank" href="{{ config('site.kiyoh.link') }}">
    <div class="c-rating__stars">

        {{-- Full Stars --}}
        @for ($i = 0; $i < $kiyoh->stars->full; $i++)
            @include('site.components.star', ['modifiers' => ['full']])
        @endfor

        {{-- Possible Half Star(s) (should max be 1 but why not looping) --}}
        @for ($i = 0; $i < $kiyoh->stars->half; $i++)
            @include('site.components.star', ['modifiers' => ['half']])
        @endfor

        {{-- Empty Stars --}}
        @for ($i = 0; $i < $kiyoh->stars->empty; $i++)
            @include('site.components.star')
        @endfor

    </div>
    <span class="c-rating__score">
        <span class="c-rating__points">{{ $kiyoh->averageNumber }}</span>
        <span class="c-rating__max">/ 10</span>
    </span>
    <span class="c-rating__reviews">{{ $kiyoh->totalReviews }} beoordelingen</span>
    <span class="c-rating__platform">via Kiyoh</span>
</a>