@lang('app.task')

{{ ucwords($task->heading) }}

@if(!is_null($task->project_id))

{{ ucfirst($task->project->project_name) }}

@endif
@if($task->task_category_id) @endif

@foreach ($task->users as $item) @endforeach

due_date->isPast()) class="text-danger" @endif>{{ $task->due_date->format($global->date_format) }}
{!! ucfirst($task->description) !!}
    @foreach($task->subtasks as $subtask)
  • {{ ucfirst($subtask->title) }}
    @if($subtask->due_date) - @lang('modules.invoices.due'): {{ $subtask->due_date->format($global->date_format) }}@endif
  • @endforeach
@lang('modules.tasks.comment')
@forelse($task->comments as $comment)
{{ ucwords($comment->user->name) }} {{ ucfirst($comment->created_at->diffForHumans()) }}
{!! ucfirst($comment->comment) !!}
@if($comment->user_id == $user->id) @endif
@empty
@lang('messages.noRecordFound')
@endforelse