@extends('layouts.app') @section('page_title', 'My Tasks') @section('content')
| Task | Project | Priority | Due Date | Status | Action |
|---|---|---|---|---|---|
|
{{ $task->title }}
{{ $task->description }}
|
{{ $task->project->name }} | {{ ucfirst($task->priority) }} |
{{ $task->due_date ? $task->due_date->format('d M, Y') : 'No due date' }}
|
||
|
No tasks assigned to you yet. |
|||||