@extends('layouts.admin') @section('title',__('admin.title_contact')) @section('page-title',__('admin.title_contact')) @section('content') {{-- Stats strip --}}
{{ $messages->total() }}
Total
{{ $unreadCount }}
{{ __('admin.unread') }}
{{-- Desktop table --}}
@if($messages->isEmpty())

No messages yet.

@else @foreach($messages as $m) @endforeach
{{ __('admin.col_from') }} {{ __('admin.col_subject') }} {{ __('admin.col_date') }} {{ __('admin.col_status') }}
{{ strtoupper(substr($m->name,0,1)) }}
{{ $m->name }}
{{ $m->email }}
{{ $m->subject ?: '(no subject)' }} — {{ Str::limit($m->message, 65) }} {{ $m->created_at->format('d M Y') }}
{{ $m->created_at->format('H:i') }}
@if(!$m->is_read) {{ __('admin.unread') }} @else {{ __('admin.read') }} @endif
@csrf @method('DELETE')
@endif
{{-- Mobile card list --}}
@forelse($messages as $m)
{{ strtoupper(substr($m->name,0,1)) }}
{{ $m->name }} {{ $m->created_at->format('d M') }}
{{ $m->email }}
{{ $m->subject ?: '(no subject)' }} — {{ Str::limit($m->message,45) }}
@if(!$m->is_read)
{{ __('admin.unread') }}
@endif
@empty

No messages yet.

@endforelse
{{ $messages->links() }}
@push('styles') @endpush @endsection