@extends('layouts.admin') @section('content') @php use Illuminate\Support\Facades\Request; @endphp

{{ $user->name }}'s Connections

{{ $user->name }}'s Connections
@foreach ($followings as $index => $following) @endforeach
Sl No Profile Pic Full Name Username Email Country Status Joined Actions
{{ $index + 1 }} @if($following->profile_picture) QR Code @else Placeholder Image @endif {{ $following->name }} {{ $following->username ?? 'NA' }} {{ $following->email }} {{ $following->country->name ?? 'N/A' }}
status) && $following->status == 1 ? 'checked' : ''}} />
{{ $following->created_at->format('d M, Y - h:i A') }}
@endsection @section('script') @endsection