تفاصيل الملاحظة
← الرجوع

{{ $complaint->user_name }}

{{ $complaint->user_email }}

{{ $complaint->phone }}

{{ ucfirst($complaint->status) }}

نص الملاحظة

{{ $complaint->description }}

{{-- ================== المرفقات ================== --}} @if($complaint->files->count() > 0)

📎 المرفقات

@foreach($complaint->files as $file) @php $ext = strtolower(pathinfo($file->file_name, PATHINFO_EXTENSION)); $fileUrl = route('secure.file', $file->file_path); @endphp
{{-- صورة --}} @if(in_array($ext, ['jpg','jpeg','png','webp'])) {{-- PDF --}} @elseif($ext == 'pdf')
PDF
{{-- ملفات أخرى --}} @else
{{ strtoupper($ext) }}
@endif
{{ $file->file_name }}
@endforeach
@endif

رد الإدارة (سيتم إرساله بالإيميل)

@if(session('success'))
{{ session('success') }}
@endif
@csrf
×