@extends('admin.layouts.master') @section('content')

Chat Admin

Chat
{{ Str::title($nama_user->nama) }}
    @foreach ($pesan as $pesan)
  • @if ($pesan->to_id == Auth::user()->id) @if (Auth::user()->foto_profile == null) @else @endif @else @if (Auth::user()->foto_profile == null) @else @endif @endif

    {{ $pesan->pesan }}

    {{ $pesan->created_at }}

  • @endforeach
@csrf @method('post')
@endsection