@extends('admin.layouts.master') @section('customer-verification', 'active') @section('title') {{ $data['title'] ?? '' }} @endsection @push('style') @endpush @section('content')

{{ $data['title'] ?? '' }}

Manage {{ $data['title'] ?? '' }}

{{-- Optional: Add a button on the right --}}
Reset
@if (isset($data['rows']) && count($data['rows']) > 0) @foreach ($data['rows'] as $key => $row) {{-- 2-Star Verification Document --}} {{-- 3-Star Full Photo --}} @endforeach @endif
SL Name Email Phone Verification Document Document Verification Full Photo Photo Verification Created At Action
SL Name Email Phone Verification Document Document Verification Full Photo Photo Verification Created At Action
{{ $key + 1 }} {{ $row->user->name }} {{ $row->user->email }} {{ $row->user->phone ?? 'N/A' }} @if ($row->user->verification_document) @else N/A @endif @if ($row->document_verified == 1) Verified @else Not Verified @endif @if ($row->user->full_photo) @else N/A @endif @if ($row->photo_verified == 1) Verified @else Not Verified @endif {{ date('d-M-Y', strtotime($row->created_at)) }}
@endsection @push('script') @endpush