@extends('admin.layouts.master') @section('title') Starter Page @endsection @section('css') @endsection @section('content')
رسائل الادارة
@if (session('success'))
{{ session('success') }}
@endif @if($complaints->isEmpty())

لا توجد شكاوى حالياً.

@else
@foreach($complaints as $index => $complaint) @endforeach
# ولي الأمر الطالب الموضوع الرسالة التاريخ الحالة إجراء
{{ $complaint->id}} {{ $complaint->parent?->name }} {{ $complaint->student?->name }} {{ $complaint->subject }} {{ Str::limit($complaint->message, 60) }} {{ $complaint->created_at->format('Y-m-d') }} @if($complaint->status === 'pending') قيد المراجعة @elseif($complaint->status === 'replied') تم الرد @else مغلقة @endif عرض و الرد
@endif
@endsection @section('script') @endsection