@lang('app.task')
{{ ucwords($task->heading) }} @if($task->task_category_id) @endif
@if(!is_null($task->project_id))

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

@endif

@if($task->user->image) @else @endif {{ ucwords($task->user->name) }}
@if($task->create_by)

@if($task->create_by->image) @else @endif {{ ucwords($task->create_by->name) }}
@endif @if($task->start_date)

{{ $task->start_date->format($global->date_format) }}
@endif

due_date->isPast()) class="text-danger" @endif> {{ $task->due_date->format($global->date_format) }} {{ $task->board_column->column_name }}
{!! ucfirst($task->description) !!}

@lang('modules.tasks.subTask')

    @foreach($task->subtasks as $subtask)
  • status == 'complete') checked @endif> {{ 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) !!}
@empty
@lang('messages.noRecordFound')
@endforelse