@extends('admin.layouts.master') @section('title','Contact Message Page') @section('content')

Table

@csrf
@foreach($contacts as $contact) @endforeach
# Created At name email subject number message Action
{{$loop->iteration}} {{$contact->created_at->format('Y-m-d')}} {{$contact->name}} {{$contact->email}} {{$contact->subject}} {{$contact->number}} {{$contact->message}}
{{$contacts->links()}}
@endsection @section('js') @endsection