Monthly Routines
All your monthly recurring schedules
@forelse($monthlyRoutines as $routine)
@php
$months = json_decode($routine->months, true) ?? [];
$monthNames = array_map(fn($m) => \Carbon\Carbon::createFromDate(null, (int)$m, 1)->format('M'), $months);
@endphp
@empty
@endforelse
{{ $routine->title }}
@if($routine->description)
{{ Str::limit(strip_tags($routine->description), 100) }}
@endif