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

Contact Management

Add New Contact
@if($contacts->count() > 0)
@foreach($contacts as $contact) @endforeach
ID Name Email Phone Actions
#{{ $contact->id }} {{ $contact->name }} {{ $contact->email }} {{ $contact->phone }} Edit Delete
@else
No Contacts Found

Start by adding your first contact.

Add New Contact
@endif
@endsection