@extends('layouts.app') @section('title', 'Chat with ' . $user->name . ' | Institution Axis') @section('sidebar-menu') @include('schooladmin.partials.sidebar') @endsection @section('breadcrumb') Home / Communication / Messages / Chat @endsection @section('content')
{{ $user->name }}
{{ $user->role }}
@forelse($messages as $msg) @if($msg->sender_id == auth()->id())

{{ $msg->message }}

{{ $msg->created_at->diffForHumans() }}
@else

{{ $msg->message }}

{{ $msg->created_at->diffForHumans() }}
@endif @empty

Start your conversation with {{ $user->name }}.

@endforelse
@endsection @section('custom-styles') @endsection @section('custom-scripts') @endsection