@extends('admin.layouts.app') @section('page-title', 'Chat With ' . ($ticket->user->customer_name ?? $ticket->user->name)) @section('content')

Chat With: {{ $ticket->user->customer_name ?? $ticket->user->name }}

{{ ucfirst($ticket->status) }}
@foreach($messages as $msg)
{{-- TEXT --}} @if($msg->message)
{{ $msg->message }}
@endif {{-- FILE --}} @if($msg->file_path) @php $isImage = Str::startsWith($msg->file_type, 'image'); $isVideo = Str::startsWith($msg->file_type, 'video'); @endphp {{-- IMAGE --}} @if($isImage) {{-- VIDEO --}} @elseif($isVideo) {{-- PDF / EXCEL / OTHER --}} @else 📎 View Attachment @endif @endif {{ $msg->created_at->format('d M h:i A') }}
@endforeach
@endsection @section('scripts') @endsection