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

Contacts

+ Add Contact
Name / Email Action
@forelse($contacts as $key => $contact)
{{ strtoupper(substr($contact->contact_name, 0, 2)) }}

{{ $contact->contact_name }}

{{ $contact->contact_email }}

@csrf @method('DELETE')

Contact ID

#{{ $key + 1 }}

Full Email

{{ $contact->contact_email }}

@empty
No contacts found
@endforelse
@endsection