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

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

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

No followers found.

@endif
@endsection @section('script') @endsection