File: D:/HostingSpaces/SBogers10/ste.komma.pro/resources/views/components/tabs.blade.php
<div class="c-tabs js-tabs">
<div class="c-tabs__controls">
@foreach($tabs as $tab)
<a class="c-tabs__button js-tabs-trigger @if($loop->first) is-active @endif" data-tab-slug="{{ \Illuminate\Support\Str::slug($tab->name) }}" data-tab-id="{{ $loop->iteration }}">
{{ $tab->name }}
</a>
@endforeach
</div>
<div class="c-tabs__container js-tabs-container">
@foreach($tabs as $tab)
<div class="c-tabs__content js-tabs-content @if($loop->first) is-active @endif" data-tab-slug="{{ \Illuminate\Support\Str::slug($tab->name) }}" data-tab-id="{{ $loop->iteration }}">
{!! $tab->description !!}
</div>
@endforeach
</div>
</div>