@extends('layouts.app') @section('content')

Monthly Routines

@forelse($monthlyRoutines as $routine)
{{ $routine->title }}

{{ $routine->description }}

Months: {{ implode(', ', array_map(function($month) { return DateTime::createFromFormat('!m', $month)->format('F'); }, json_decode($routine->months, true) ?? [])) }}

Time: {{ $routine->start_time }} - {{ $routine->end_time }}

@csrf @method('DELETE')
@empty

No monthly routines found.

@endforelse
@endsection