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
{{ $routine->title }}
@if($routine->description)
{{ Str::limit(strip_tags($routine->description), 100) }}
@endif
@if(count($monthNames)) {{ implode(', ', $monthNames) }} @endif @if($routine->start_time && $routine->end_time) {{ \Carbon\Carbon::parse($routine->start_time)->format('g:i A') }} – {{ \Carbon\Carbon::parse($routine->end_time)->format('g:i A') }} @endif
@empty
No monthly routines yet

Create your first monthly routine to get started.

Create Monthly Routine
@endforelse