@extends('layouts.admin') @section('title', 'task Manager') @section('content')
| Title | Status | Priority | Due Date | Assigned To | Actions |
|---|---|---|---|---|---|
| {{ $task->title }} | {{ ucfirst($task->status) }} | {{ ucfirst($task->priority) }} | {{ $task->due_date ? $task->due_date->format('d M Y') : 'N/A' }} | {{ $task->assignedTo ? $task->assignedTo->name : 'Unassigned' }} | Edit |
| No tasks found. | |||||