@extends('layouts.frontend') @section('title', 'Pesan Saya') @section('content')

Pesan Saya

@forelse($chatList as $chat)
{{ $chat['nama'] }}
{{ $chat['time'] }}

{{ Str::limit($chat['last_message'], 50) }}

@if($chat['unread'] > 0) {{ $chat['unread'] }} @endif
@empty

Belum ada percakapan. Mulai chat dari halaman detail produk.

Lihat Produk
@endforelse
@endsection