@extends('main') @section('content')
Contacts
@foreach ($contacts as $contact) @method('DELETE') @csrf @endforeach
ID Details Number Message Created Action

{{ $contact->id }}

user1
{{ $contact->user->name }}

@if($contact->user->email) {{$contact->user->email}} @else {{$contact->user->number}} @endif

{{ $contact->number }}

{{ $contact->message }}

{{date('d M, y',strtotime($contact->created_at))}}
{{ $contacts->links() }}
@endsection