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

{{ $todo->title }}

Priority: {{ ucfirst($todo->priority) }}
Category: {{ optional($todo->category)->name ?? 'Uncategorized' }}
{!! nl2br(e($todo->description)) !!}

Assignees

    @foreach($todo->volunteers as $v)
  • {{ $v->name }} ({{ $v->email }})
  • @endforeach

Updates

@foreach($todo->updates as $u)
{{ $u->user->name }} · {{ $u->created_at->diffForHumans() }}
{{ $u->content }}
@endforeach
Edit
@csrf
@endsection