@extends('tracker::layouts.master') @section('title',$issue->issue_key) @section('content')

{{ $issue->issue_key }} — {{ $issue->title }}

Edit ← Back
Description
@if($issue->description)
{!! $issue->description !!}
@else

No description provided.

@endif
Comments ({{ $issue->comments->count() }})
@forelse($issue->comments as $comment)
{{ $comment->author->name ?? 'Unknown' }} {{ $comment->created_at->format('M j, Y g:ia') }}
@csrf @method('DELETE')
@if($comment->body)
{{ $comment->body }}
@endif @if($comment->attachments->isNotEmpty())
@foreach($comment->attachments as $attachment) @if($attachment->is_image) {{ $attachment->original_name }} @else {{ $attachment->original_name }} ({{ $attachment->human_size }}) @endif @endforeach
@endif
@empty
No comments yet
@endforelse
Details
@csrf @method('PATCH')
Project
{{ $issue->project->name }}
Type
{{ ucfirst($issue->type) }}
Priority
{{ ucfirst($issue->priority) }}
Assignee
{{ $issue->assignee->name ?? '—' }}
Reporter
{{ $issue->reporter->name ?? '—' }}
Due
{{ $issue->due_date?->format('M j, Y') ?? '—' }}
Created
{{ $issue->created_at->format('M j, Y') }}
@push('scripts') @endpush @endsection