@if (in_array('birthday', $activeWidgets))
@forelse ($upcomingBirthdays as $upcomingBirthday) {{ $upcomingBirthday->date_of_birth->translatedFormat('d M') }} @php $year = $upcomingBirthday->date_of_birth->timezone(company()->timezone)->year(date('Y')); $diffInDays = $year->copy()->diffForHumans(now()->timezone(company()->timezone),[ 'syntax' => \Carbon\CarbonInterface::DIFF_RELATIVE_AUTO, 'options' => \Carbon\Carbon::JUST_NOW | \Carbon\Carbon::ONE_DAY_WORDS | \Carbon\Carbon::TWO_DAY_WORDS, ]); @endphp @if ($upcomingBirthday->date_of_birth->isToday()) @lang('app.today') @else {{ $diffInDays }} @endif @empty @endforelse
@endif