{{-- ✅ الهيدر --}}
{{-- ✅ المحتوى --}}
{{ __('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') }}
@if($task->comments->count())

{{ __('Comments') }}

@foreach($task->comments as $comment) @endforeach
{{ __('Author') }} {{ __('Comment') }} {{ __('Date') }}
{{ $comment->user->name ?? __('User') }} {{ $comment->content }} {{ $comment->created_at->format('Y-m-d H:i') }}
@endif
___________________________
{{ __('Signature') }}
{{-- ✅ الفوتر --}}