@extends('layouts.app') @section('title', 'In-app Messaging | Institution Axis') @section('sidebar-menu') @include('schooladmin.partials.sidebar') @endsection @section('breadcrumb') Home / Communication / Messages @endsection @section('content')
Conversations
@forelse($conversations as $conv)
{{ $users[$conv->other_user_id]->name }}
{{ $users[$conv->other_user_id]->role }}
{{ \Carbon\Carbon::parse($conv->last_message_time)->diffForHumans() }}
@empty

No conversations found. Start by sending a notification.

@endforelse

Select a Conversation

Pick a contact from the left list to start messaging.

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