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

Task

@foreach($allTasks as $t)

Edit Task

@csrf
You can update the task details here.

Activity

    @if($t)
  • {{ $t->created_at->format('d M Y H:i') }}
    {{ ucfirst($t->type ?? 'Task') }}
  • @else
  • {{ now()->format('d M Y H:i') }}
    No activity recorded for this task.
  • @endif
@endforeach
@endsection