@extends('layouts.app') @section('title', 'Contact School | Institution Axis') @section('sidebar-menu') @endsection @section('breadcrumb') Home / Contact School @endsection @section('content')
Chat with School Office
Direct messaging with the school administrator
@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

No previous messages. Start a conversation with the school.

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