{{ __('Task Title') }}: {{ $task->title }}
| {{ __('Category') }} | {{ $task->category->name ?? __('N/A') }} | {{ __('Status') }} | {{ __($task->status) }} |
|---|---|---|---|
| {{ __('Priority') }} | {{ __(ucfirst($task->priority)) }} | {{ __('Due Date') }} | {{ $task->due_date }} |
| {{ __('Assigned To') }} | {{ $task->employees->pluck('name')->join(', ') }} | ||
| {{ __('Notes') }} | {{ $task->notes ?? __('N/A') }} | ||
{{ __('Comments') }}
| {{ __('Author') }} | {{ __('Comment') }} | {{ __('Date') }} |
|---|---|---|
| {{ $comment->user->name ?? __('User') }} | {{ $comment->content }} | {{ $comment->created_at->format('Y-m-d H:i') }} |
___________________________
{{ __('Signature') }}