@extends('admin.layout') @section('content')
Contact messages
@foreach ($messages as $m) @endforeach
Name Mobile Email Submitted Read Action
{{ $m->name }} {{ $m->phone ?? '-' }} {{ $m->email ?? '-' }} {{ $m->submitted_at?->format('d M Y, h:i A') }} {{ $m->is_read ? 'Yes' : 'No' }}
View
@csrf @method('DELETE')
{{ $messages->links() }}
@endsection