@extends('layouts.app') @section('title', 'Contacts List') @section('content')

Contacts

+ Add Contact
@forelse($contacts as $key => $contact) @empty @endforelse
# Name Email Action
{{ $key + 1 }} {{ $contact->contact_name }} {{ $contact->contact_email }}
Edit
@csrf @method('DELETE')
No contacts found
@endsection