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

Report Verification Desk

Validate incoming data logs, sales metrics, and venue attachments before final ledger commit.

Dashboard Home
Pending Clearance Pipeline
@if($reports->isEmpty())
Pipeline Clear

All incoming field submission logs have been processed successfully.

@else
@foreach($reports as $report) @endforeach
Field Agent Exhibition Details Sales Amount Visitor Footfall Leads Captured Stall Image Verification Actions
{{ strtoupper(substr($report->user->name, 0, 2)) }}
{{ $report->user->name }} {{ $report->user->email }}
{{ $report->exhibition->name }} {{ $report->exhibition->city }} ₹{{ number_format($report->sales_amount, 2) }} {{ $report->visitor_count }} {{ $report->lead_count }} @if($report->photo_path && is_array($report->photo_path) && count($report->photo_path) > 0) {{ count($report->photo_path) }} Photos @else No Image @endif
@csrf
@csrf
@endif
@endsection