Weekly Routines
All your weekly recurring schedules
@forelse($weeklyRoutines as $routine)
@php
$weeks = json_decode($routine->weeks, true) ?? [];
$weekDisplay = count($weeks) > 4
? 'Weeks ' . implode(', ', array_slice($weeks, 0, 4)) . ' +' . (count($weeks) - 4) . ' more'
: (count($weeks) ? 'Week ' . implode(', ', $weeks) : '');
@endphp
@empty
@endforelse
{{ $routine->title }}
@if($routine->description)
{{ Str::limit(strip_tags($routine->description), 100) }}
@endif