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

Report Collection Tracker

Global auditing window for all approved operational field counters.

Verified Ledger Transactions
@if($approved_reports->isEmpty())
No Verified Logs

Once a regional manager approves a submission, it will instantly securely populate here.

@else
@foreach($approved_reports as $report) @endforeach
Date Field Agent Exhibition Event Sales Revenue Visitors Leads Stall Media
{{ $report->updated_at->format('d M, Y') }} {{ $report->user->name }} {{ $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))
@foreach($report->photo_path as $img) @endforeach
@else None @endif
@endif
@endsection