{{ __('Task Report') }} - {{ now()->format('Y-m-d') }}
| # | {{ __('Title') }} | {{ __('Status') }} | {{ __('Priority') }} | {{ __('Due Date') }} | {{ __('Employees') }} |
|---|---|---|---|---|---|
| {{ $task->id }} | {{ $task->title }} | {{ ucfirst(str_replace('_', ' ', $task->status)) }} | {{ ucfirst($task->priority) }} | {{ $task->due_date }} | {{ $task->employees->pluck('name')->join(', ') }} |
___________________________
{{ __('Signature') }}