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

Edit Task

@csrf
You can update the task details here.

Activity

    @forelse($followups as $followup) @php $circleColors = [ 'completed' => 'circle-success', 'reopened' => 'circle-warning', 'new' => 'circle-primary', 'hold' => 'circle-purple', 'started' => 'circle-info', ]; $circleClass = $circleColors[strtolower($followup->status)] ?? 'circle-danger'; @endphp
  • {{ $followup->created_at->format('d M Y H:i') }}
    {{ ucfirst($followup->status) }} @if(!empty($followup->remark))
    {{ $followup->remark }}
    @endif

  • @empty
  • {{ now()->format('d M Y H:i') }}
    No activity recorded for this task.
  • @endforelse
@endsection