File: D:/HostingSpaces/slenders/slenders.nl/resources/views/site/components/rating.blade.php
<div class="c-rating @modifiers('c-rating')">
<a class="c-rating__link" target="_blank" href="#">
<div class="c-rating__stars">
{{-- Full Stars --}}
@for ($i = 0; $i < $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 < $stars->half; $i++)
@include('site.components.star', ['modifiers' => ['half']])
@endfor
{{-- Empty Stars --}}
@for ($i = 0; $i < $stars->empty; $i++)
@include('site.components.star')
@endfor
</div>
</a>
</div>