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

Table

@csrf
@csrf @method('DELETE')
{{-- --}} @foreach($contacts as $contact) @endforeach
# created at name email phone sender type subject type subjectSender Typemessage Action
{{$loop->iteration}} {{$contact->created_at->format('Y-m-d')}} {{$contact->name}} {{$contact->email}} {{$contact->phone}} {{$contact->sender_type_name}} {{$contact->subject_type_name}} @if ($contact->subject_url) {{$contact->subject_type_name . ' URL'}} @endif {{$contact->message}}
@method('DELETE') @csrf
{{$contacts->links()}}
@endsection @section('js') @endsection