@props([
'tabs' => [],
'active' => null,
])
merge(['class' => 'tabs']) }}>
@foreach ($tabs as $key => $tab)
@php
$isActive = ($active ?? array_key_first($tabs)) === $key;
$href = $tab['href'] ?? null;
@endphp
@if ($href)
{{ $tab['label'] }}
@else
{{ $tab['label'] }}
@endif
@endforeach