@section("title", "BizMan | Software Development Tasks")

{{ __('Software Development Tasks') }}

{{ date('l, d M Y') }}

{{ $project->project_name }}

{{ $project->client_name ?? 'No client' }}

{{ ucfirst($project->status) }}

Budget

{{ $project->formatted_value }}

Team Members

@forelse($project->teamMembers as $member) {{ $member->name }} @empty No team members @endforelse

Target Deployment

{{ $project->target_deployment ? $project->target_deployment->format('d M Y') : '-' }}

Total Tasks

{{ $stats['total'] }}

To Do

{{ $stats['todo'] }}

In Progress

{{ $stats['in_progress'] }}

Review

{{ $stats['review'] }}

Done

{{ $stats['done'] }}

Read-Only View

You are viewing all tasks from all developers in this project. Tasks cannot be added or edited from this view.

To Do ({{ $tasks['todo']->count() }})

@foreach ($tasks['todo'] as $task)

{{ $task->title }}

@if ($task->creator) {{ $task->creator->name }} @endif
@if ($task->description)

{{ $task->description }}

@endif
{{ ucfirst($task->priority) }} @if ($task->due_date) {{ $task->due_date->format('M d') }} @endif
@endforeach

In Progress ({{ $tasks['in_progress']->count() }})

@foreach ($tasks['in_progress'] as $task)

{{ $task->title }}

@if ($task->creator) {{ $task->creator->name }} @endif
@if ($task->description)

{{ $task->description }}

@endif
{{ ucfirst($task->priority) }} @if ($task->due_date) {{ $task->due_date->format('M d') }} @endif
@endforeach

Review ({{ $tasks['review']->count() }})

@foreach ($tasks['review'] as $task)

{{ $task->title }}

@if ($task->creator) {{ $task->creator->name }} @endif
@if ($task->description)

{{ $task->description }}

@endif
{{ ucfirst($task->priority) }} @if ($task->due_date) {{ $task->due_date->format('M d') }} @endif
@endforeach

Done ({{ $tasks['done']->count() }})

@foreach ($tasks['done'] as $task)

{{ $task->title }}

@if ($task->creator) {{ $task->creator->name }} @endif
@if ($task->description)

{{ $task->description }}

@endif
{{ ucfirst($task->priority) }} @if ($task->due_date) {{ $task->due_date->format('M d') }} @endif
@endforeach