@extends('layouts.admin') @section('title', setting('school_name', 'ShulePoint') . ' | Message') @section('page-title', 'Message') @section('content')
Inbox Reply

{{ $message->subject ?: '(No subject)' }}

{{ $message->created_at->format('d M Y H:i') }}
@foreach ($thread as $m) @php $mine = $m->sender_id === auth()->id(); @endphp
{{ $m->sender->name ?? 'User' }} · {{ $m->created_at->format('d M Y H:i') }}
{{ $m->body }}
@if($m->has_attachment) @endif
@endforeach
@push('scripts') @endpush @endsection