{{ $current_month->month_name }}
@foreach ($allData as $data)
@php
$ticketDates = $tickets
->pluck('date')
->map(function ($date) {
return Carbon\Carbon::parse($date)->format('Y-m-d');
})
->toArray();
@endphp
@if ($data->day == $current_day && $data->month == $current_month->month && $current_month->month == now()->format('m'))
@else
@endif
@endforeach