@extends('layouts.app') @php $header_title = 'مركز الرسائل المباشرة'; @endphp @section('content')

المحادثات

Live
@forelse($conversations as $conv)
{{ $conv->customer ? substr($conv->customer->name, 0, 1) : 'G' }}
@if($conv->unreadCount() > 0)
{{ $conv->unreadCount() }}
@endif

{{ $conv->customer ? $conv->customer->name : 'زائر (G-' . substr($conv->session_id, 0, 4) . ')' }}

{{ $conv->last_message_at ? $conv->last_message_at->diffForHumans(null, true) : '' }}

{{ $conv->lastMessage ? $conv->lastMessage->message : 'ابدأ المحادثة...' }}

@empty
لا توجد محادثات
@endforelse

مركز الدعم الفني المباشر

اختر محادثة من القائمة للبدء في الرد على العملاء

@push('styles') @endpush @push('scripts') @endpush @endsection