@extends('layouts.admin')
@section('page_title', $isRtl ? 'الرسائل' : 'Contact Messages')
@section('content')
{{ $isRtl ? 'الرسائل الواردة' : 'Contact Messages' }}
| {{ $isRtl ? 'الاسم' : 'Name' }} |
{{ $isRtl ? 'البريد' : 'Email' }} |
{{ $isRtl ? 'الموضوع' : 'Subject' }} |
{{ $isRtl ? 'الحالة' : 'Status' }} |
{{ $isRtl ? 'التاريخ' : 'Date' }} |
|
@forelse($contacts as $contact)
| {{ $contact->name }} |
{{ $contact->email }} |
{{ $contact->subject }} |
{{ $contact->status }}
|
{{ $contact->created_at?->format('Y-m-d') }} |
|
@empty
| {{ $isRtl ? 'لا توجد رسائل' : 'No messages' }} |
@endforelse
{{ $contacts->links() }}
@endsection