@extends('admin.layouts.admin-master') @section('page-title') {{__('Tenant Analytics')}} @endsection @section('content')

Tenant Analytics

{{ number_format($activeTenants) }}

Active Tenants (Last 15min)

{{ number_format($moduleStats->api_requests_count ?? 0) }}

Total API Requests

Module Usage Statistics

Module Usage Summary

    @php $modules = [ 'workflow' => 'Workflow', 'support_ticket' => 'Support Ticket', 'sales_pipeline' => 'Sales Pipeline', 'proposal' => 'Proposal', 'meeting' => 'Meeting', 'project' => 'Project', 'form' => 'Form', 'inbox' => 'Inbox', 'folder' => 'Folder', 'company' => 'Company', 'contact' => 'Contact', 'invoice' => 'Invoice', 'quotation' => 'Quotation', 'discussion' => 'Discussion', 'document' => 'Document', 'task' => 'Task' ]; @endphp @foreach($modules as $key => $label)
  • {{ $label }} {{ number_format($moduleStats->{$key.'_count'} ?? 0) }}
  • @endforeach

Real-time Activity

@endsection @section('scripts') @endsection