@extends('layouts.app') @section('content')

{{ $task->title }}

{{ $task->status }}

Task Details

Employee: {{ $task->assignee?->name ?? 'Unassigned' }}

Type: {{ $task->task_type }}

Platform: {{ $task->platform }}

Deadline: {{ $task->due_at }}

Deliverables:
{!! nl2br(e($task->deliverables)) !!}

Brief:
{!! nl2br(e($task->brief)) !!}

Brand/Page Brief

@if($task->brand->logo_path)@endif

{{ $task->brand->name }} / {{ $task->brand->page_name }}

CTA: {{ $task->brand->default_cta }}

Phone: {{ $task->brand->phone }}

Website: {{ $task->brand->website }}

Font: {{ $task->brand->font_family }}

Colors: {{ $task->brand->primary_color }} / {{ $task->brand->secondary_color }}

Rules:
{!! nl2br(e($task->brand->brand_rules)) !!}

@if($task->product)

Research Source Links

@foreach($task->product->sources as $s)

{{ $s->platform }} — {{ $s->channel_name }}: Open Source
{{ $s->instructions }}

@endforeach
@endif

Update Status

@csrf @method('patch')

Comments / Revision

@csrf
@foreach($task->comments as $c)

{{ $c->user?->name }} [{{ $c->comment_type }}] — {{ $c->body }}

@endforeach
@endsection