@extends('admin.admin_master')
@section('admin')
Contact Message All
Sl |
Name |
Email |
Phone |
Date |
Action |
@php($i = 1)
@foreach($contacts as $item)
{{ $i++}} |
{{ $item->name }} |
{{ $item->email }} |
{{ $item->phone }} |
{{ Carbon\Carbon::parse($item->created_at)->diffForHumans() }} |
|
@endforeach
@endsection