@extends('admin.layout') @section('title', 'Contactberichten') @section('content') {{-- Filters --}}
Reset
{{ $messages->total() }} bericht(en) @if ($unreadCount) {{ $unreadCount }} ongelezen @endif
@forelse ($messages as $msg) {{-- Unread dot --}}
@if ($msg->isUnread()) @else @endif
{{ $msg->name }} @if ($msg->category) {{ str_replace('-', ' ', $msg->category) }} @endif

{{ $msg->subject }}

{{ $msg->created_at->format('d/m') }}
@empty

Geen berichten gevonden.

@endforelse
@if ($messages->hasPages())
{{ $messages->links() }}
@endif
@endsection