@extends('layouts.app-sidebar') @section('content')
#{{ $ticket->id }} {{ ucfirst(str_replace('_', ' ', $ticket->status)) }} {{ $ticket->type_label }}

{{ $ticket->subject }}

Your Message

{{ $ticket->description }}

@if($ticket->attachment_path)

Attachment

{{ $ticket->attachment_name }}

{{ $ticket->attachment_name }}

@endif
@if($ticket->admin_notes)

Admin Response

Official reply from DayBot team

{{ $ticket->admin_notes }}

@endif

Ticket Info

Status
{{ ucfirst(str_replace('_', ' ', $ticket->status)) }}
Priority
{{ ucfirst($ticket->priority) }}
@if($ticket->tenant)
Related Channel
{{ $ticket->tenant->channel_title }}
@endif
Created
{{ $ticket->created_at->format('M d, Y H:i') }}
@if($ticket->resolved_at)
Resolved
{{ $ticket->resolved_at->format('M d, Y H:i') }}
@endif
@if($ticket->status === 'open')

Your ticket is open and awaiting review. We'll get back to you soon!

@elseif($ticket->status === 'in_progress')

We're working on this! Stay tuned for updates.

@elseif($ticket->status === 'resolved')

This ticket has been resolved. Thank you for your feedback!

@endif
@endsection