@extends('layouts.app') @section('title', 'Top Clients Report') @section('page-title', 'Reports') @section('content')
Revenue Top Clients VAT Report Export CSV
Top 10 Clients by Revenue
@if($clients->isEmpty())
No data yet

Create and get paid on invoices to see your top clients.

@else
@foreach($clients as $i => $client) @endforeach
# Client Total Paid
{{ $i + 1 }} {{ $client->display_name }} ₦{{ number_format($client->invoices_sum_total ?? 0, 2) }}
@endif
@endsection