@php $formatPartialDate = function ($year, $month, $day) { if (!$year) return '?'; $text = $year . '年'; if ($month) $text .= $month . '月'; if ($day) $text .= $day . '日'; return $text; }; @endphp

歴代トップコンビ

@foreach ($troupes as $troupe) @php $combinations = $topCombinationsByTroupe[$troupe->id] ?? collect(); @endphp @if ($combinations->isNotEmpty())
@foreach ($combinations as $combo) @endforeach
@endif @endforeach