Chat
-
@foreach ($chat as $chat)
@php
$badge = DB::Table('chat')
->where('from_id', $chat->id)
->where('status', 'off read')
->get();
@endphp
-
@if ($chat->foto_profile == null)
@else
@endif
{{ $chat->nama }} @if ($badge->count() > 0) {{ $badge->count() }} Pesan Belum Di Baca @endif
Customer
@endforeach