@props([ 'currentStreak' => null, 'pastStreaks' => [], 'allStreaks' => [] ])
@if($currentStreak !== null)

A sorozat jelenlegi állása: {{ $currentStreak }}

@endif @if(!empty($pastStreaks))

Korábbi sorozatok állásai: {{ implode(', ', $pastStreaks) }}

@endif @if(!empty($allStreaks))
Összes sorozat: {{ implode(', ', $allStreaks) }}
@endif