@forelse($conversation->chat as $chat)
@if($chat->type == 'media') {{ $chat->media }} @else {{$chat->message}} @endif
{{ $chat->created_at->format('d-m-Y - h:i A') }} @if($chat->user_id == auth()->id()) @endif
@empty

{{__("Start a conversation with ")}} {{ $reciever->name }}

@endforelse