@extends('layouts.app') @section('form-title') {{ __('Article Task') }} @endsection @section('form-sub-title') {{ __('Details') }} @endsection @section('breadcrumb') @endsection @section('content') @if(!empty($task->project)) @include('partials.modals.project_note') @endif
@if(!empty($task->client) && !empty($task->project))
@include('tasks.message_buttons', ['reply' => $reply, 'parent_message_id' => $parent_message_id])
@endif @include('tasks.messages', ['task' => $task])
@if($task->type === 'article') @include('articles.article') @endif
{{ __('Project & task information') }}
@if(!empty($task->client)) {{ $task->client->name }} @endif
@if(!empty($task->project)) {{ $task->project->title }} @endif
@if(!empty($project)) {{ $project->projectStatus->translated_title }} @endif
@if(!empty($task->project->projectOwner))
@if(!empty($task->project)) {{ $task->project->projectOwner->name }} @endif
@endif
@if(!empty($task->client) && !empty($task->project)) {{ $task->client->id }}-{{ $task->project->id }} @endif
@if(!empty($task->project)) {{ $task->project->deadline }} @endif
@if(!empty($task->project)) {{ $task->project->created_at }} @endif
@if(!empty($task->taskOwner)) {{ $task->taskOwner->name }} @endif
{{ $task->display_status }}
@if(!empty($task->client)) {{ $task->client->id }}- @endif @if(!empty($task->project)) {{ $task->project->id }}- @endif {{ $task->id }}
{{ $task->display_deadline }}
{{ $task->created_at }}
@if (canViewUpdate('tasks-edit')) @endif
@if(!empty($task->project)) @if (canViewUpdate('note'))
{{ __('Notes') }}
{!! $task->project->note !!}
 
@endif @endif
{{ __('Active projects') }}
@if(!empty($project) && !empty($project->endUser))
{{ __('End User') }}
@if(!empty($project->endUser))
{{ $project->endUser->name }}
@endif @if(!empty($project->endUser->organisation))
{{ $project->endUser->organisation->name }}
@endif
{{ $project->endUser->house_number }}
{{ $project->endUser->zip_code }}
{{ $project->endUser->gml }}
{{ $project->endUser->street }}
{{ $project->endUser->city }}
{{ $project->endUser->country->country_name }}
{{ $project->endUser->display_notification_type }}
{{ $project->endUser->job_title }}
{{ $project->endUser->display_status }}
{{ $project->endUser->displayRole() }}
{{ $project->endUser->display_language }}
user profile image
@if(allowedToUpdate($project->endUser->id)) @endif
{{ __('End user / project location') }}
@if(!empty($project->endUser->latitude) && !empty($project->endUser->longitude))
{{ __('More info') }} @else

{{ __('No map data available. Please update end user map location') }}

@endif
@endif
@endsection @push('child-scripts') @if(getAuthUser()->can('delete article tasks of own organization')) @endif @if(!empty($project->endUser->latitude) && !empty($project->endUser->longitude)) @endif @endpush