@extends('adminlte::page')
@section('title', 'Task Detail')
@section('content_header')
Task Detail
@endsection
@section('content')
- Title
- {{ $task->title }}
- Status
- {{ ucfirst(str_replace('_',' ',$task->status)) }}
- Priority
- {{ ucfirst($task->priority) }}
- Due Date
- {{ optional($task->due_date)->format('M d, Y') ?? '-' }}
- Assignee
- {{ $task->assignee?->name ?? '-' }}
- Case
-
@if($task->case)
{{ $task->case->case_number }} — {{ $task->case->title }}
@else
-
@endif
- Description
- {!! nl2br(e($task->description)) !!}
- Created: {{ optional($task->created_at)->format('M d, Y H:i') }}
- Creator: {{ $task->creator?->name ?? '-' }}
- Billable Hours: {{ $task->billable_hours ?? 0 }}
Back to Tasks
@endsection