@extends('layouts.master') @section('title', 'Dashboard - Paidash') @push('styles') @endpush @push('styles') @endpush @section('content')
Real-time insights and analytics for {{ Auth::user()->name }}'s business
Total Revenue
Active Clients
Pending Payments
Active Services
Inventory Items
Monthly Expenses
Collection Efficiency
Overdue Amount
Avg Invoice Value
Client Growth
Monthly revenue trends and invoice metrics
Loading revenue data...
Clients with highest pending payments
| # | Client Name | Employee | Invoice Amount | Paid Amount | Pending Amount |
|---|---|---|---|---|---|
|
{{ $index + 1 }}
|
@if(auth()->user()->can('client-view'))
{{ $client->client_name }}
@else
{{ $client->client_name }}
@endif
{{ $client->client_type_name ?? 'N/A' }} |
@if($client->employee_id)
|
₹{{ App\Http\Controllers\Controller::IND_money_format($client->total_invoice_amount, 0) }} | ₹{{ App\Http\Controllers\Controller::IND_money_format($client->total_paid_amount, 0) }} | ₹{{ App\Http\Controllers\Controller::IND_money_format($client->total_pending_amount, 0) }} |
|
No pending payments found |
|||||