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

Contacts

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