@extends('layouts.admin') @section('page-title', 'Client-wise Conveyance – ' . ($currentMonthLabel ?? '')) @section('page-subtitle', 'Submitted conveyance grouped by client with filters and export') @section('content') {{-- FILTER CARD --}}
Filter submitted conveyance by month, date range, session, and client. Export follows the same filters.
Showing submitted entries between {{ $monthStart ? $monthStart->format('d M Y') : '—' }} and {{ $monthEnd ? $monthEnd->format('d M Y') : '—' }} .
Clients: {{ $groups->count() }} • Grand Total: ₹ {{ number_format($grandTotal ?? 0, 2) }}
| Client | Total Amount (₹) | Entries | Employees | Verification |
|---|---|---|---|---|
|
{{ $clientName }}
Client ID: {{ $clientId ?? 'N/A' }}
|
₹ {{ number_format($totalAmount, 2) }} | {{ $entryCount }} | {{ $employeeCount }} | @if($clientId) 🔎 Open Verification View @else No client linked @endif |
| Grand Total | ₹ {{ number_format($grandTotal ?? 0, 2) }} | (All clients in this view) | ||