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

Connections for {{ $user->name }}

{{ $user->company ?? '' }} — {{ $user->designation ?? '' }}

@forelse ($connections as $index => $connection) @if($connection->connection) @endif @empty @endforelse
Connection Name Email Company Designation
{{ $connection->connection->name ?? 'N/A' }}
ID: {{ $connection->connection->id ?? '-' }}
{{ $connection->connection->email ?? 'N/A' }} {{ $connection->connection->company ?? 'N/A' }} {{ $connection->connection->designation ?? 'N/A' }}
No connections found.
@endsection