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

Manage Your Contacts

Add New Contact
@if($contacts->isEmpty())
No contacts

No Contacts Found

Start by adding a new contact to your CRM.

Add New Contact
@else
Contact List
Total Contacts: {{ $contacts->total() }}
@foreach($contacts as $contact) @endforeach
Name Status Stage Phone Email Actions
{{ $contact->first_name ?? $contact->name }} {{ $contact->last_name ?? '' }} {{ $contact->status }} {{ $contact->stage }} {{ $contact->phone1 ?? $contact->phones->pluck('phone')->first() ?? 'N/A' }} {{ $contact->email1 ?? $contact->emails->pluck('email')->first() ?? 'N/A' }}
{{ $contacts->links('pagination::bootstrap-5') }}
@endif
@foreach($contacts as $contact) @endforeach @endsection