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

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

{{ $user->name }}'s Blocked
@foreach ($list as $index => $block) @php $following=$block->user; @endphp @endforeach
Sl No Profile Pic Full Name Username Email Country Remarks Block Date 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' }} {{ $block->remark ?? 'N/A' }} {{ $block->created_at->format('d M, Y - h:i A') }}
@endsection @section('script') @endsection