@lang('app.task')

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


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

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)
{!! ucfirst($comment->comment) !!}
@if($comment->user_id == $user->id) @lang('app.delete') @endif
{{ ucfirst($comment->created_at->diffForHumans()) }}
{{ ucwords($comment->user->name) }}
@empty
@lang('messages.noRecordFound')
@endforelse