{{-- user/chat/index.blade.php | Obrempong | Jcode --}} @extends('layouts.app') @section('title','Global Chat') @push('styles') @endpush @section('content')
💬 Global Chat
Live
@foreach($messages as $msg)
@if($msg->user_id!==auth()->id()) @endif
@if($msg->user_id!==auth()->id())
{{ $msg->user->name }}
@endif
{{ $msg->message }}
{{ $msg->created_at->diffForHumans() }}
@endforeach
@endsection @push('scripts') @endpush