@lang('modules.taskDetail')

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

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

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

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

{{ ucwords($task->category->category_name) }}

@endif

{{ $task->due_date->format($global->date_format) }}

{{ $task->user->name }}

{!! ucfirst($task->description) !!}

@if($user->cans('edit_tasks'))
@lang('app.edit')
@endif