{{__('Support Ticket Details')}}
{{__('All Tickets')}}- {{__('Ticket ID:')}} #{{$ticket_details->id}}
- {{__('Title:')}} {{$ticket_details->title}}
- {{__('Subject:')}} {{$ticket_details->subject}}
- {{__('Status:')}} {{$ticket_details->status}}
- {{__('Priority:')}} {{$ticket_details->priority}}
- {{__('Description:')}} {{$ticket_details->description}}
{{__('All Conversation')}}
@if($q == 'all' && count($all_messages) > 1)
@endif
@forelse($all_messages as $msg)
@empty
{{substr($msg->user_info()->name ?? 'Unknown',0,1)}}
@if($msg->notify == 'on')
@endif
{{$msg->user_info()->name ?? 'Unknown'}}
{{date_format($msg->created_at,'d M Y H:i:s')}} | {{$msg->created_at->diffForHumans()}}
{!! $msg->message !!}
@if(file_exists('assets/uploads/ticket/'.$msg->attachment))
{{$msg->attachment}}
@endif
{{__('no message found')}}
@endforelse