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

Connections / Leads

@forelse ($connections as $index => $connection) @empty @endforelse
# User Name Email Total Connections Actions
{{ $index + 1 }}
{{ $connection->full_name ?? 'N/A' }}
{{ $connection->company ?? 'N/A' }}
{{ $connection->designation ?? 'N/A' }}
{{ $connection->email ?? 'N/A' }} {{ $connection->total_connections }} View
No connections found.
@if ($connections->hasPages()) @endif
@endsection