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

Weekly Routines

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

{{ $routine->description }}

Weeks: {{ implode(', ', json_decode($routine->weeks, true) ?? []) }}

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

@csrf @method('DELETE')
@empty

No weekly routines found.

@endforelse
@endsection