@extends('layouts.frontend') @section('title', 'Chat dengan ' . $lawan->nama_lengkap) @section('content')
{{-- Chat Header --}}
{{ substr($lawan->nama_lengkap, 0, 1) }}
{{ $lawan->nama_lengkap }}
{{ $lawan->nama_usaha }}
{{-- Chat Box --}}
@forelse ($chats as $chat) @php $isMe = $chat->pengirim_id == Auth::guard('pembeli')->id() && $chat->pengirim_type == 'App\Models\Pembeli'; @endphp
{{ $chat->isi_pesan }}
{{ $chat->created_at->format('H:i') }} @if ($isMe) @endif
@empty

Mulai percakapan dengan {{ $lawan->nama_lengkap }}

@endforelse
{{-- Footer Chat --}}
@endsection @section('js') @endsection