@if (isset($years) && $years != null)
@foreach ($years as $year) @php $csstx = ''; if ($year == $syear) { $csstx = 'text-white'; } @endphp
{{ $year }}
@endforeach
@endif @if (isset($months) && $months != null) @php $bbcss = ''; if (count($days) > 0) { $bbcss = 'border-b border-gray-200'; } @endphp
@foreach ($months as $month) @php $csstx = ''; if ($month == $smonth) { $csstx = 'text-white'; } @endphp
{{ monthname($month) }}
@endforeach
@endif @if (isset($days) && $days != null)
@foreach ($days as $day) @php $csstx = ''; if ($day == $sday) { $csstx = 'text-white'; } @endphp
{{ $day }}
@endforeach
@endif