@extends('layouts.app') @section('content')
 
 
 
 
@php $total_amount = 0; $total_count = 0; @endphp @foreach($data as $d) @php $total_count += $d->counter; $total_amount += $d->amountsum; @endphp @endforeach
S/N TAX PAYER FIRS TIN NUMBER OF TRANSACTIONS TRANSACTION VALUE (₦) ACTIONS
{{ $loop->iteration }}. {{ $d->taxpayer_name }} {{ $d->firs_tin }} {{ $d->counter }} {{ number_format($d->amountsum, 2) }}
- - - {{ $total_count }} {{ number_format($total_amount, 2) }} -
S/N TAX PAYER FIRS TIN NUMBER OF TRANSACTIONS TRANSACTION VALUE (₦) ACTIONS
@endsection