@extends('app.layouts.main') @section('content')

Manage Contact

@if (session('success')) @elseif(session('error')) @endif
@php $i=1 @endphp @foreach($contactList as $contact) @php $i++;@endphp@endforeach
ID Name Email Phone Number Comments Created Date Action
{{ $i }} {{ $contact->name}} {{ $contact->email}} {{ $contact->phone }} {{ $contact->comments }} {{ date("d-M-Y", strtotime($contact->created_at)) }}
@endsection