Daily Routines

All your daily recurring schedules

@forelse($dailyRoutines as $routine)
{{ $routine->title }}
@if($routine->description)
{{ Str::limit(strip_tags($routine->description), 100) }}
@endif
@if($routine->days) {{ implode(', ', array_map('ucfirst', json_decode($routine->days, true) ?? [])) }} @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 daily routines yet

Create your first daily routine to get started.

Create Daily Routine
@endforelse